commit: fb1b9e74ae0ebc902a6d72dc80bc79aa905d69e8 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Sun Sep 18 15:29:36 2016 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Sun Sep 18 15:30:35 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb1b9e74
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 sys-apps/iproute2/iproute2-4.7.0.ebuild | 2 +- 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 9a1447d..4b4f69e 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 5e9fb78..b1b0347 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):" \
