diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-06-16 03:11:51 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-06-16 03:11:51 +0000 |
commit | 3b5e8a1aa664ca8736157abe7f1074e7c23d619f (patch) | |
tree | 9b4ffc53fef09a1548ea19525e0b6e3767acb487 | |
parent | uclibc fixes thanks to Peter S. Mazinger <ps.m@gmx.net> (diff) | |
download | historical-3b5e8a1aa664ca8736157abe7f1074e7c23d619f.tar.gz historical-3b5e8a1aa664ca8736157abe7f1074e7c23d619f.tar.bz2 historical-3b5e8a1aa664ca8736157abe7f1074e7c23d619f.zip |
syntax fix on 3.4 compare condition
-rw-r--r-- | sys-devel/bison/ChangeLog | 5 | ||||
-rw-r--r-- | sys-devel/bison/Manifest | 4 | ||||
-rw-r--r-- | sys-devel/bison/bison-1.875.ebuild | 5 |
3 files changed, 9 insertions, 5 deletions
diff --git a/sys-devel/bison/ChangeLog b/sys-devel/bison/ChangeLog index 042ff82246a1..937eaf386019 100644 --- a/sys-devel/bison/ChangeLog +++ b/sys-devel/bison/ChangeLog @@ -1,6 +1,9 @@ # 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.27 2004/06/16 02:23:49 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/ChangeLog,v 1.28 2004/06/16 03:11:51 dragonheart Exp $ + + 16 Jun 2004; Daniel Black <dragonheart@gentoo.org> bison-1.875.ebuild: + syntax fix on 3.4 compare condition 16 Jun 2004; Daniel Black <dragonheart@gentoo.org> bison-1.875.ebuild: uclibc fixes thanks to Peter S. Mazinger <ps.m@gmx.net> diff --git a/sys-devel/bison/Manifest b/sys-devel/bison/Manifest index 1d1559082c8c..64236dcb02e8 100644 --- a/sys-devel/bison/Manifest +++ b/sys-devel/bison/Manifest @@ -1,8 +1,8 @@ -MD5 5c724510c0a97881a8960293daee028c ChangeLog 4309 +MD5 44ff2aa6bdd571d0db577a3fe7a2eba5 ChangeLog 4421 MD5 796f4c136d43ecf211aa22b7bb28b2ac bison-1.34-r1.ebuild 1168 MD5 9bc17ebe6a17ce140fbde3b96a7104b2 bison-1.35.ebuild 1273 MD5 101fa7fcc6ec17705bca1dfaea977429 bison-1.75.ebuild 1117 -MD5 0599039bc8e19cbe43737542e877803b bison-1.875.ebuild 1810 +MD5 d788b29e539e135a29c23f17d7814bba bison-1.875.ebuild 1806 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 MD5 61b224a9eaf1ae7f77c2d1456d8fda87 files/bison-1.32-extfix.patch 1170 MD5 644a4912da3e5107f509022f173ec146 files/bison-1.875-gccerror.patch 1538 diff --git a/sys-devel/bison/bison-1.875.ebuild b/sys-devel/bison/bison-1.875.ebuild index 86e72494e657..6b0d9a8f660d 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.19 2004/06/16 02:23:49 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bison/bison-1.875.ebuild,v 1.20 2004/06/16 03:11:51 dragonheart Exp $ inherit gcc flag-o-matic eutils @@ -35,7 +35,8 @@ src_compile() { # Bug 29017 says that bison has compile-time issues with # -march=k6* prior to 3.4CVS. Use -march=i586 instead # (04 Feb 2004 agriffis) - if [ "`gcc-major-version`" -eq "3" -a "`gcc-minor-version`" -lt "4" ] ; then + # + if (( $(gcc-major-version) == 3 && $(gcc-minor-version) < 4 )) ; then replace-cpu-flags i586 k6 k6-1 k6-2 fi |