summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-02-15 12:11:25 +0000
committerMike Frysinger <vapier@gentoo.org>2005-02-15 12:11:25 +0000
commit7ab80ae29940d5b4db1a1f46f3c4f8b55d74f9f3 (patch)
tree5e72f59b3f6e5044a9c3a3ac7037ea890bb0a93c /sys-devel/libtool
parentversion bump as per bug #81826 thanks to Marco Morales <soulse@gmail.com> (diff)
downloadgentoo-2-7ab80ae29940d5b4db1a1f46f3c4f8b55d74f9f3.tar.gz
gentoo-2-7ab80ae29940d5b4db1a1f46f3c4f8b55d74f9f3.tar.bz2
gentoo-2-7ab80ae29940d5b4db1a1f46f3c4f8b55d74f9f3.zip
Add a catch for infer tags with CC=cc just like CC=gcc.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'sys-devel/libtool')
-rw-r--r--sys-devel/libtool/ChangeLog6
-rw-r--r--sys-devel/libtool/files/1.5.6/libtool-1.5-filter-host-tags.patch12
2 files changed, 14 insertions, 4 deletions
diff --git a/sys-devel/libtool/ChangeLog b/sys-devel/libtool/ChangeLog
index 713984cdaa98..9ef3391ef125 100644
--- a/sys-devel/libtool/ChangeLog
+++ b/sys-devel/libtool/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-devel/libtool
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.71 2005/02/07 04:27:02 kumba Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.72 2005/02/15 12:11:25 vapier Exp $
+
+ 15 Feb 2005; Mike Frysinger <vapier@gentoo.org>
+ files/1.5.6/libtool-1.5-filter-host-tags.patch:
+ Add a catch for infer tags with CC=cc just like CC=gcc.
06 Feb 2005; Joshua Kinard <kumba@gentoo.org> libtool-1.5.10-r4.ebuild:
Marked stable on mips.
diff --git a/sys-devel/libtool/files/1.5.6/libtool-1.5-filter-host-tags.patch b/sys-devel/libtool/files/1.5.6/libtool-1.5-filter-host-tags.patch
index ce1cb4698dd6..e418b43ea4f3 100644
--- a/sys-devel/libtool/files/1.5.6/libtool-1.5-filter-host-tags.patch
+++ b/sys-devel/libtool/files/1.5.6/libtool-1.5-filter-host-tags.patch
@@ -1,6 +1,11 @@
---- libtool-1.5.10/ltmain.in.orig 2004-11-09 13:43:24.290875562 -0500
-+++ libtool-1.5.10/ltmain.in 2004-11-09 13:45:51.250048464 -0500
-@@ -242,7 +242,16 @@
+Make the infer tag logic a bit more magical since a lot of old packages still
+exist which utilize this functionality.
+
+http://bugs.gentoo.org/show_bug.cgi?id=77921
+
+--- libtool-1.5.10/ltmain.in
++++ libtool-1.5.10/ltmain.in
+@@ -242,7 +242,17 @@
esac
CC_quoted="$CC_quoted $arg"
done
@@ -9,6 +14,7 @@
+ # and sometimes libtool has CC=<HOST>-gcc but user does CC=gcc
+ extendcc=${host}-${CC}
case "$@ " in
++ "cc "* | " cc "* | "${host}-cc "* | " ${host}-cc "*|\
+ "gcc "* | " gcc "* | "${host}-gcc "* | " ${host}-gcc "*)
+ tagname=CC
+ break ;;