diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2002-09-28 23:35:47 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2002-09-28 23:35:47 +0000 |
commit | 0d1de9459fdd63c618bdb6936b0024b577ed7746 (patch) | |
tree | fe4ba46f679555ab7d44387dd95411795a33852e | |
parent | a8068e972fda779a96a70b645789546a6835db63 (diff) |
removed PREFIX=/usr from make install command
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2141 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 6 | ||||
-rw-r--r-- | chapter06/bzip2-inst.xml | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 90991cfb9..32a4f72d0 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -59,6 +59,12 @@ </itemizedlist> </para></listitem> +<listitem><para>September 28th, 2002 [gerard]: Chapter 06 - Bzip2: Removed +the <emphasis>PREFIX=/usr</emphasis> from the +<userinput>make install</userinput> command because the +<emphasis>PREFIX</emphasis> is already set to <emphasis>/usr</emphasis> by +default.</para></listitem> + <listitem><para>September 28th, 2002 [gerard]: Chapter 06 - Vim: Removed the FHS compliance notes. They are bogus because Vim doesn't use the localstatedir at all.</para></listitem> diff --git a/chapter06/bzip2-inst.xml b/chapter06/bzip2-inst.xml index c3519fe86..ecbfee7fe 100644 --- a/chapter06/bzip2-inst.xml +++ b/chapter06/bzip2-inst.xml @@ -5,7 +5,7 @@ <para><screen><userinput>make -f Makefile-libbz2_so && make && -make PREFIX=/usr install && +make install && cp bzip2-shared /bin/bzip2 && ln -s libbz2.so.1.0 libbz2.so && cp -a libbz2.so* /lib && |