diff options
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> |