diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2003-09-21 23:40:54 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2003-09-21 23:40:54 +0000 |
commit | c699938711281eda9f84e26d535354ac82c5a79c (patch) | |
tree | c10b6b5ad604427241fe1729ac7fae358dab1522 /sys-apps | |
parent | new version (diff) | |
download | gentoo-2-c699938711281eda9f84e26d535354ac82c5a79c.tar.gz gentoo-2-c699938711281eda9f84e26d535354ac82c5a79c.tar.bz2 gentoo-2-c699938711281eda9f84e26d535354ac82c5a79c.zip |
Actually do previous fix properly
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/coreutils/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/coreutils/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/coreutils/coreutils-5.0-r4.ebuild | 5 |
3 files changed, 9 insertions, 6 deletions
diff --git a/sys-apps/coreutils/ChangeLog b/sys-apps/coreutils/ChangeLog index 7d510e45533b..59fbbe3c77f7 100644 --- a/sys-apps/coreutils/ChangeLog +++ b/sys-apps/coreutils/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/coreutils # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/ChangeLog,v 1.34 2003/09/21 23:32:53 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/ChangeLog,v 1.35 2003/09/21 23:40:43 azarah Exp $ + + 22 Sep 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-5.0-r4.ebuild: + Ok, was on crack there for a moment - the test for cvs was inverted, should be + fixed now. 22 Sep 2003; Martin Schlemmer <azarah@gentoo.org> coreutils-5.0-r4.ebuild: Fix issues with gettext's autopoint if cvs is not installed (bug #28920). diff --git a/sys-apps/coreutils/Manifest b/sys-apps/coreutils/Manifest index c72b04454a88..f613a40e2ea2 100644 --- a/sys-apps/coreutils/Manifest +++ b/sys-apps/coreutils/Manifest @@ -1,9 +1,9 @@ MD5 c1a61b5e143228990ad9ace27f5155d3 coreutils-5.0-r1.ebuild 2728 MD5 8f2bc7ec86685c4ae093a5f5c4f59f82 coreutils-5.0-r2.ebuild 2765 -MD5 0557325f46cf66050a9188d779e6f22d ChangeLog 6229 +MD5 35dc401c421bbef04209356698898999 ChangeLog 6401 MD5 6086ad43548782d03330e6cc8ff7f6f6 coreutils-5.0-r3.ebuild 2876 MD5 81aee4964c34d6d2c265ad36c9e34241 coreutils-4.5.11-r1.ebuild 2509 -MD5 098ded53690b18204861883f0b7368e8 coreutils-5.0-r4.ebuild 3475 +MD5 461ed85b6bb46fa055a27d92511b8979 coreutils-5.0-r4.ebuild 3431 MD5 174f99d91c509210fda44c172686864d files/digest-coreutils-5.0-r3 216 MD5 4f881af0d43d43da188e159999bc5f56 files/digest-coreutils-5.0-r2 216 MD5 d0d4edd45d2bebd31947fec9818be33e files/digest-coreutils-5.0-r1 213 diff --git a/sys-apps/coreutils/coreutils-5.0-r4.ebuild b/sys-apps/coreutils/coreutils-5.0-r4.ebuild index 22681291b695..1f60251f60d9 100644 --- a/sys-apps/coreutils/coreutils-5.0-r4.ebuild +++ b/sys-apps/coreutils/coreutils-5.0-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/coreutils-5.0-r4.ebuild,v 1.8 2003/09/21 23:32:53 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/coreutils-5.0-r4.ebuild,v 1.9 2003/09/21 23:40:43 azarah Exp $ inherit eutils @@ -75,8 +75,7 @@ src_compile() { then if [ -z "`use selinux`" ] then - if [ -n "`which cvs 2>/dev/null`" ] && \ - [ -x "`which cvs 2>/dev/null`" ] + if [ -z "`which cvs 2>/dev/null`" ] then # Fix issues with gettext's autopoint if cvs is not installed, # bug #28920. |