diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2016-01-25 00:03:45 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2016-01-25 00:03:45 +0000 |
commit | e408cb05608c2d009b2685f8302ef2a692c00266 (patch) | |
tree | c0758bfc682ae46f10ca0e26e6910750f908b0d9 /chapter06/bash.xml | |
parent | e691c77d104a85344c76afc4bb6264a229d4c46d (diff) |
Update to coreutils-8.25. Fixes
Simplify bash installation procedures.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10988 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/bash.xml')
-rw-r--r-- | chapter06/bash.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chapter06/bash.xml b/chapter06/bash.xml index 73c67129a..77fc08c04 100644 --- a/chapter06/bash.xml +++ b/chapter06/bash.xml @@ -48,7 +48,6 @@ <para>Prepare Bash for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr \ - --bindir=/bin \ --docdir=/usr/share/doc/bash-&bash-version; \ --without-bash-malloc \ --with-installed-readline</userinput></screen> @@ -84,9 +83,11 @@ <screen><userinput remap="test">su nobody -s /bin/bash -c "PATH=$PATH make tests"</userinput></screen> - <para>Install the package:</para> + <para>Install the package and move the main executable to + <filename class='directory'>/bin</filename>:</para> -<screen><userinput remap="install">make install</userinput></screen> +<screen><userinput remap="install">make install +mv -vf /usr/bin/bash /bin</userinput></screen> <para>Run the newly compiled <command>bash</command> program (replacing the one that is currently being executed):</para> |