diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-02-06 15:58:08 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-02-06 15:58:08 +0000 |
commit | c2bc6b6dec61332aeb285c919f64b5b7a9e21142 (patch) | |
tree | 2db624d7994b213dbe495ad28dff63315e969eda /sys-devel/bison | |
parent | Adding amd64 keyword from #36030. (diff) | |
download | historical-c2bc6b6dec61332aeb285c919f64b5b7a9e21142.tar.gz historical-c2bc6b6dec61332aeb285c919f64b5b7a9e21142.tar.bz2 historical-c2bc6b6dec61332aeb285c919f64b5b7a9e21142.zip |
k6 replacement in the ebuild was resulting in -march=i586-3, fix and make more stringent
Diffstat (limited to 'sys-devel/bison')
-rw-r--r-- | sys-devel/bison/ChangeLog | 6 | ||||
-rw-r--r-- | sys-devel/bison/Manifest | 4 | ||||
-rw-r--r-- | sys-devel/bison/bison-1.875.ebuild | 11 |
3 files changed, 13 insertions, 8 deletions
diff --git a/sys-devel/bison/ChangeLog b/sys-devel/bison/ChangeLog index f4b066a841d1..eb8f64a64dd1 100644 --- a/sys-devel/bison/ChangeLog +++ b/sys-devel/bison/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-devel/bison # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.24 2004/02/05 02:52:07 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.25 2004/02/06 15:58:08 agriffis Exp $ + + 06 Feb 2004; Aron Griffis <agriffis@gentoo.org> bison-1.875.ebuild: + k6 replacement in the ebuild was resulting in -march=i586-3, fix and make more + stringent 04 Feb 2004; Aron Griffis <agriffis@gentoo.org> bison-1.875.ebuild: Fix bug 29017 by replacing -march=k6 and -march=k6-2 with -march=i586. Fix bug diff --git a/sys-devel/bison/Manifest b/sys-devel/bison/Manifest index 9331cbf3b775..5bc811f8e79e 100644 --- a/sys-devel/bison/Manifest +++ b/sys-devel/bison/Manifest @@ -1,8 +1,8 @@ MD5 101fa7fcc6ec17705bca1dfaea977429 bison-1.75.ebuild 1117 MD5 796f4c136d43ecf211aa22b7bb28b2ac bison-1.34-r1.ebuild 1168 -MD5 19227865d432b10e91168bb6228128d3 bison-1.875.ebuild 1803 +MD5 3bc90fcbd32a950d3a7340c06e8c4512 bison-1.875.ebuild 1820 MD5 18102af6e68668dc18bd4c1d06782db0 bison-1.35.ebuild 1273 -MD5 89b4314ab16df7b5b4ac7d50587a1da4 ChangeLog 3935 +MD5 43091655f40cc9836ce933ab15083610 ChangeLog 4099 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 MD5 85dbbe1a9f32abae54cacd04aaa80709 files/digest-bison-1.34-r1 63 MD5 9c4ca0c28c5762cc799cc3e56f51d54e files/digest-bison-1.35 63 diff --git a/sys-devel/bison/bison-1.875.ebuild b/sys-devel/bison/bison-1.875.ebuild index fe07262f04f4..ff9aba137f6e 100644 --- a/sys-devel/bison/bison-1.875.ebuild +++ b/sys-devel/bison/bison-1.875.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-1.875.ebuild,v 1.10 2004/02/05 02:52:07 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-1.875.ebuild,v 1.11 2004/02/06 15:58:08 agriffis Exp $ inherit gcc @@ -31,11 +31,12 @@ src_compile() { [[ $ARCH == amd64 ]] && append-flags -O0 # Bug 29017 says that bison has compile-time issues with - # -march=k6 and -march=k6-2 prior to 3.4CVS. Use -march=i586 - # instead (04 Feb 2004 agriffis) + # -march=k6* prior to 3.4CVS. Use -march=i586 instead + # (04 Feb 2004 agriffis) if [[ $(gcc-major-version) == 3 && $(gcc-minor-version) < 4 ]]; then - CFLAGS=${CFLAGS//-march=k6-2/-march=i586} - CFLAGS=${CFLAGS//-march=k6/-march=i586} + CFLAGS=" ${CFLAGS} " + CFLAGS=${CFLAGS// -march=k6-? / -march=i586 } + CFLAGS=${CFLAGS// -march=k6 / -march=i586 } fi econf $(use_enable nls) || die |