diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-07-05 13:26:52 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-07-20 21:35:36 -0400 |
commit | 66c9c433232eb9e1c2f786e1ca0e8eff527fd9fb (patch) | |
tree | f243a8d9c0db15613dc528acf0475fbdb408e124 /net-misc | |
parent | media-gfx/plantuml: use HTTPS (diff) | |
download | gentoo-66c9c433232eb9e1c2f786e1ca0e8eff527fd9fb.tar.gz gentoo-66c9c433232eb9e1c2f786e1ca0e8eff527fd9fb.tar.bz2 gentoo-66c9c433232eb9e1c2f786e1ca0e8eff527fd9fb.zip |
net-misc/dhcpcd: remove unused patch
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16598
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/dhcpcd/files/dhcpcd-9.1.2-embedded_config.patch | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/net-misc/dhcpcd/files/dhcpcd-9.1.2-embedded_config.patch b/net-misc/dhcpcd/files/dhcpcd-9.1.2-embedded_config.patch deleted file mode 100644 index 5401317a2ece..000000000000 --- a/net-misc/dhcpcd/files/dhcpcd-9.1.2-embedded_config.patch +++ /dev/null @@ -1,49 +0,0 @@ -From 9dc6d4b7c8df8425c9b1e893e86b8463abb2053c Mon Sep 17 00:00:00 2001 -From: Roy Marples <roy@marples.name> -Date: Mon, 15 Jun 2020 22:04:37 +0100 -Subject: configure: Fix fallout with disabling embedded config - ---- - configure | 19 ++++++++++--------- - 1 file changed, 10 insertions(+), 9 deletions(-) - -diff --git a/configure b/configure -index 8398ad69..a3701726 100755 ---- a/configure -+++ b/configure -@@ -545,15 +545,6 @@ if [ -z "$AUTH" -o "$AUTH" = yes ]; then - echo "SRCS+= auth.c" >>$CONFIG_MK - fi - --if [ -z "$EMBEDDED" -o "$EMBEDDED" = yes ]; then -- echo "$DHCPCD_DEFS will be embedded in dhcpcd itself" -- echo "DHCPCD_SRCS+= dhcpcd-embedded.c" >>$CONFIG_MK --else -- echo "$DHCPCD_DEFS will be installed to $LIBEXECDIR" -- echo "CPPFLAGS+= -DEMBEDDED_CONFIG=\\\"$LIBEXECDIR/dhcpcd-definitions.conf\\\"" >>$CONFIG_MK -- echo "EMBEDDEDINSTALL= _embeddedinstall" >>$CONFIG_MK --fi -- - if [ -z "$PRIVSEP" ]; then - # privilege separation works fine .... except on Solaris - case "$OS" in -@@ -665,6 +656,16 @@ EOF - rm -f _pledge.c _pledge - fi - -+# This block needs to be after the compiler test due to embedded quotes. -+if [ -z "$EMBEDDED" -o "$EMBEDDED" = yes ]; then -+ echo "$DHCPCD_DEFS will be embedded in dhcpcd itself" -+ echo "DHCPCD_SRCS+= dhcpcd-embedded.c" >>$CONFIG_MK -+else -+ echo "$DHCPCD_DEFS will be installed to $LIBEXECDIR" -+ echo "CPPFLAGS+= -DEMBEDDED_CONFIG=\\\"$LIBEXECDIR/dhcpcd-definitions.conf\\\"" >>$CONFIG_MK -+ echo "EMBEDDEDINSTALL= _embeddedinstall" >>$CONFIG_MK -+fi -+ - if [ "$OS" = linux ]; then - printf "Testing for nl80211 ... " - cat <<EOF >_nl80211.c --- -cgit v1.2.3 - |