diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2004-01-10 07:05:53 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2004-01-10 07:05:53 +0000 |
commit | f23c1d523b69d9efcfe7421c5d371cccde931cdd (patch) | |
tree | a8a705b4b974aa94dd2b824bb9c745ab8accde8a /sys-apps/coreutils | |
parent | Had die statement outside of if block (diff) | |
download | historical-f23c1d523b69d9efcfe7421c5d371cccde931cdd.tar.gz historical-f23c1d523b69d9efcfe7421c5d371cccde931cdd.tar.bz2 historical-f23c1d523b69d9efcfe7421c5d371cccde931cdd.zip |
uniq and split are moved back to /bin because they are needed by the bootscripts (checkroot and functions.sh respectively). Thanks to: Norberto Bensa <nbensa@gmx.net> in bug #36453
Diffstat (limited to 'sys-apps/coreutils')
-rw-r--r-- | sys-apps/coreutils/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/coreutils/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/coreutils/coreutils-5.0.91-r4.ebuild | 6 |
3 files changed, 11 insertions, 6 deletions
diff --git a/sys-apps/coreutils/ChangeLog b/sys-apps/coreutils/ChangeLog index 402778ac365a..d8cdcf8b187d 100644 --- a/sys-apps/coreutils/ChangeLog +++ b/sys-apps/coreutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/coreutils # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/ChangeLog,v 1.66 2004/01/09 15:01:05 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/ChangeLog,v 1.67 2004/01/10 07:05:46 seemant Exp $ + + 09 Jan 2004; Seemant Kulleen <seemant@gentoo.org> + coreutils-5.0.91-r4.ebuild: + uniq and split are moved back to /bin because they are needed by the + bootscripts (checkroot and functions.sh respectively) 09 Jan 2004; Seemant Kulleen <seemant@gentoo.org> coreutils-5.0.91-r4.ebuild: diff --git a/sys-apps/coreutils/Manifest b/sys-apps/coreutils/Manifest index 8654562e0c60..4ae2b7b9e333 100644 --- a/sys-apps/coreutils/Manifest +++ b/sys-apps/coreutils/Manifest @@ -2,8 +2,8 @@ MD5 d57f3f5fdc923ccce50b74b5b5bec99c coreutils-5.0.91-r3.ebuild 4063 MD5 892411466b5aa40edfb2ef50da54bc0b coreutils-5.0-r6.ebuild 2741 MD5 5296d12e384ee08bc6be40dc80924f68 coreutils-5.0.91-r2.ebuild 3648 MD5 eb91c3dff46b58a712d16e1a07a6371c coreutils-5.0-r5.ebuild 2573 -MD5 8cfb8f8cf53400093dd681b43e5b47bb coreutils-5.0.91-r4.ebuild 4273 -MD5 9e3d8398de4ae8b391f8cf63e18e04aa ChangeLog 13433 +MD5 fdc690b593277a6f5e5ceb90b9790e2a coreutils-5.0.91-r4.ebuild 4262 +MD5 3a369edcb4a8b3636dc6b456eab7545f ChangeLog 13643 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 MD5 4638c50e0ea024536055d69519cd5fad files/digest-coreutils-5.0.91-r2 151 MD5 a56b66f95289815e386f537689ef29a0 files/digest-coreutils-5.0.91-r3 229 diff --git a/sys-apps/coreutils/coreutils-5.0.91-r4.ebuild b/sys-apps/coreutils/coreutils-5.0.91-r4.ebuild index fee039ebf4c4..f73f52612017 100644 --- a/sys-apps/coreutils/coreutils-5.0.91-r4.ebuild +++ b/sys-apps/coreutils/coreutils-5.0.91-r4.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-apps/coreutils/coreutils-5.0.91-r4.ebuild,v 1.2 2004/01/09 15:01:05 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/coreutils-5.0.91-r4.ebuild,v 1.3 2004/01/10 07:05:46 seemant Exp $ inherit eutils flag-o-matic @@ -142,8 +142,8 @@ src_install() { # move non-critical packages into /usr mv bin/{csplit,expand,factor,fmt,fold,install,join,md5sum,nl,od} usr/bin - mv bin/{paste,pathchk,pinky,pr,printf,sha1sum,shred,split,sum,tac} usr/bin - mv bin/{tail,test,tsort,unexpand,uniq,users} usr/bin + mv bin/{paste,pathchk,pinky,pr,printf,sha1sum,shred,sum,tac} usr/bin + mv bin/{tail,test,tsort,unexpand,users} usr/bin cd usr/bin ln -s ../../bin/* . |