diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2006-11-25 19:40:28 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2006-11-25 19:40:28 +0000 |
commit | ace27ffbf880b8e3ab6df1b08475c8c5e25a7a38 (patch) | |
tree | 44f9ec5dda38f5be4a5fc97be7bc89ae6e15b5e3 | |
parent | 6aeced45afc52af3b7e0c81bd70797a7c58ab6e0 (diff) |
Move /usr/bin/mv to /bin again.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7872 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 7 | ||||
-rw-r--r-- | chapter06/coreutils.xml | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 5d8e25279..6c1a61a4a 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -40,6 +40,13 @@ <para>2006-11-25</para> <itemizedlist> <listitem> + <para>[matthew] - Move <command>mv</command> from + <filename class="directory">/usr/bin</filename> to + <filename class="directory">/bin</filename> again. The upgrade to + Coreutils-6.6 mistakenly removed it from the list of files to be + moved. Thanks to Chris Staub for the report.</para> + </listitem> + <listitem> <para>[matthew] - Prevent Inetutils from building and installing <command>ifconfig</command> as LFS uses <command>ip</command> to configure network interfaces. Thanks to Marty Jack for the report and diff --git a/chapter06/coreutils.xml b/chapter06/coreutils.xml index 90cb61d04..4a85817d4 100644 --- a/chapter06/coreutils.xml +++ b/chapter06/coreutils.xml @@ -105,7 +105,7 @@ echo "dummy:x:1000:1000::/root:/bin/bash" >> /etc/passwd</userinput></scre <para>Move programs to the locations specified by the FHS:</para> <screen><userinput>mv -v /usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} /bin -mv -v /usr/bin/{false,hostname,ln,ls,mkdir,mknod,pwd,rm} /bin +mv -v /usr/bin/{false,hostname,ln,ls,mkdir,mknod,mv,pwd,rm} /bin mv -v /usr/bin/{rmdir,stty,sync,true,uname} /bin mv -v /usr/bin/chroot /usr/sbin</userinput></screen> |