diff options
-rw-r--r-- | chapter01/changelog.xml | 4 | ||||
-rw-r--r-- | chapter06/bash-inst.xml | 2 | ||||
-rw-r--r-- | chapter06/fileutils-inst.xml | 4 | ||||
-rw-r--r-- | chapter06/gcc-inst.xml | 8 |
4 files changed, 16 insertions, 2 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index c1a573dc5..1cdbce555 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -6,6 +6,10 @@ <itemizedlist> +<listitem><para>December 10th, 2001 [markh]: Chapter 6: Re-create +symlinks in bash, fileutils and gcc instructions to make the Chapter 6 +instructions independent of those in chapter 5.</para></listitem> + <listitem><para>December 10th, 2001 [marcheerdink]: Chapter 5+6: Cleaned up the sed commands to use the backup file that was created earlier instead of writing to an intermediate 'tmp~' file.</para></listitem> diff --git a/chapter06/bash-inst.xml b/chapter06/bash-inst.xml index 0e113e9e9..08c522099 100644 --- a/chapter06/bash-inst.xml +++ b/chapter06/bash-inst.xml @@ -7,6 +7,8 @@ --bindir=/bin && make && make install && +cd /bin && +ln -sf bash sh && exec /bin/bash --login</userinput></screen></para> </sect2> diff --git a/chapter06/fileutils-inst.xml b/chapter06/fileutils-inst.xml index 8cfabe762..4e7ad9327 100644 --- a/chapter06/fileutils-inst.xml +++ b/chapter06/fileutils-inst.xml @@ -6,7 +6,9 @@ <para><screen><userinput>./configure --prefix=/usr --bindir=/bin \ --libexecdir=/bin && make && -make install</userinput></screen></para> +make install && +cd /usr/bin && +ln -sf ../../bin/install</userinput></screen></para> </sect2> diff --git a/chapter06/gcc-inst.xml b/chapter06/gcc-inst.xml index f9510506f..5e86705cc 100644 --- a/chapter06/gcc-inst.xml +++ b/chapter06/gcc-inst.xml @@ -23,7 +23,13 @@ cd ../gcc-build && ../gcc-&gcc-version;/configure --prefix=/usr --enable-shared \ --enable-languages=c,c++ --enable-threads=posix && make bootstrap && -make install</userinput></screen></para> +make install && +cd /lib && +ln -sf ../usr/bin/cpp && +cd /usr/lib && +ln -sf ../bin/cpp && +cd /usr/bin && +ln -sf gcc cc</userinput></screen></para> </sect2> |