diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2016-09-18 16:29:36 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2016-09-18 16:30:35 +0100 |
commit | fb1b9e74ae0ebc902a6d72dc80bc79aa905d69e8 (patch) | |
tree | e2634c987b2aa833b26eab144b24db8b69df2b1a /sys-apps/iproute2 | |
parent | net-nntp/nzbget: remove old (diff) | |
download | gentoo-fb1b9e74ae0ebc902a6d72dc80bc79aa905d69e8.tar.gz gentoo-fb1b9e74ae0ebc902a6d72dc80bc79aa905d69e8.tar.bz2 gentoo-fb1b9e74ae0ebc902a6d72dc80bc79aa905d69e8.zip |
sys-apps/iproute2: respect CC, fixes cross-compilation, bug #591218
iproute tarball used to use 'CC = ' to override a compiler.
Now it uses 'CC :=' and it broke our sed silently.
Reported-by: Gerhard Bräunlich
Reported-by: n05 on #gentoo-embedded
Bug: https://bugs.gentoo.org/591218
Package-Manager: portage-2.3.0
Diffstat (limited to 'sys-apps/iproute2')
-rw-r--r-- | sys-apps/iproute2/iproute2-4.7.0.ebuild | 2 | ||||
-rw-r--r-- | sys-apps/iproute2/iproute2-9999.ebuild | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys-apps/iproute2/iproute2-4.7.0.ebuild b/sys-apps/iproute2/iproute2-4.7.0.ebuild index 9a1447daa5d8..4b4f69e7fb3d 100644 --- a/sys-apps/iproute2/iproute2-4.7.0.ebuild +++ b/sys-apps/iproute2/iproute2-4.7.0.ebuild @@ -52,7 +52,7 @@ src_prepare() { epatch "${PATCHES[@]}" sed -i \ - -e '/^CC =/d' \ + -e '/^CC :=/d' \ -e "/^LIBDIR/s:=.*:=/$(get_libdir):" \ -e "s:-O2:${CFLAGS} ${CPPFLAGS}:" \ -e "/^HOSTCC/s:=.*:= $(tc-getBUILD_CC):" \ diff --git a/sys-apps/iproute2/iproute2-9999.ebuild b/sys-apps/iproute2/iproute2-9999.ebuild index 5e9fb782286b..b1b0347479e8 100644 --- a/sys-apps/iproute2/iproute2-9999.ebuild +++ b/sys-apps/iproute2/iproute2-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -41,7 +41,7 @@ src_prepare() { use ipv6 || epatch "${FILESDIR}"/${PN}-3.10.0-no-ipv6.patch #326849 sed -i \ - -e '/^CC =/d' \ + -e '/^CC :=/d' \ -e "/^LIBDIR/s:=.*:=/$(get_libdir):" \ -e "s:-O2:${CFLAGS} ${CPPFLAGS}:" \ -e "/^HOSTCC/s:=.*:= $(tc-getBUILD_CC):" \ |