diff options
author | Ken Moffat <ken@linuxfromscratch.org> | 2021-05-16 03:06:47 +0100 |
---|---|---|
committer | Ken Moffat <ken@linuxfromscratch.org> | 2021-05-16 03:06:47 +0100 |
commit | 7fbfed56688ea26852ae1562619b08612cc1ca21 (patch) | |
tree | c5bb55312b08f4f4e663de106bb8116cd1d284be /chapter08 | |
parent | 59fef4c47ec96d7c10db3b8c24790142018f131c (diff) |
For consistency, do not use /bin in bzip2 and inetutils.
Diffstat (limited to 'chapter08')
-rw-r--r-- | chapter08/bzip2.xml | 4 | ||||
-rw-r--r-- | chapter08/inetutils.xml | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/chapter08/bzip2.xml b/chapter08/bzip2.xml index d3b7d42c4..5d1e53469 100644 --- a/chapter08/bzip2.xml +++ b/chapter08/bzip2.xml @@ -89,9 +89,9 @@ make clean</userinput></screen> ln -sv libbz2.so.&bzip2-version; /usr/lib/libbz2.so</userinput></screen> <para>Install the shared <command>bzip2</command> binary into the - <filename class="directory">/bin</filename> directory:</para> + <filename class="directory">/usr/bin</filename> directory:</para> -<screen><userinput remap="install">cp -v bzip2-shared /bin/bzip2</userinput></screen> +<screen><userinput remap="install">cp -v bzip2-shared /usr/bin/bzip2</userinput></screen> <para>Remove an useless static library:</para> diff --git a/chapter08/inetutils.xml b/chapter08/inetutils.xml index b79a0b782..b80db6f1d 100644 --- a/chapter08/inetutils.xml +++ b/chapter08/inetutils.xml @@ -43,6 +43,7 @@ <para>Prepare Inetutils for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr \ + --bindir=/usr/bin \ --localstatedir=/var \ --disable-logger \ --disable-whois \ @@ -116,7 +117,7 @@ <para>Move a program to the proper location:</para> -<screen><userinput remap="install">mv -v /{,s}bin/ifconfig</userinput></screen> +<screen><userinput remap="install">mv -v /usr/{,s}bin/ifconfig</userinput></screen> </sect2> |