diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-14 01:56:17 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-14 01:56:17 +0000 |
commit | 806dd1d11bf367ed3f4492e345ca1c6e9f0fd7b1 (patch) | |
tree | 90aec59ec517022c4e33aa6049045340c4322943 | |
parent | 79e1b06483ab0df0379c9728c422d8630327ab7b (diff) |
Fixed console-tools' man page installation
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@155 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.sgml | 5 | ||||
-rw-r--r-- | chapter06/consoletools-inst.sgml | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/chapter01/changelog.sgml b/chapter01/changelog.sgml index 6544c96d0..6ca7cb75d 100644 --- a/chapter01/changelog.sgml +++ b/chapter01/changelog.sgml @@ -75,6 +75,11 @@ Chapter 6: Changed $* into "$@" in the yacc script during bison's installation. "$@" allows usage of quoted arguments with blanks. </para></listitem> +<listitem><para> +Chapter 6: Fixed the man page installation during console-tools' +installation. +</para></listitem> + </itemizedlist> </sect1> diff --git a/chapter06/consoletools-inst.sgml b/chapter06/consoletools-inst.sgml index 364f065b7..e4639fbdf 100644 --- a/chapter06/consoletools-inst.sgml +++ b/chapter06/consoletools-inst.sgml @@ -18,8 +18,12 @@ Install Console-tools by running the following commands: <userinput>make &&</userinput> <userinput>make install &&</userinput> <userinput>cd doc/man &&</userinput> - <userinput>mv consolechars.8.in consolechars.8 - &&</userinput> + <userinput>sed s/"@datadir@"/"\/usr\/share"/ + consolechars.8.in > consolechars.8 &&</userinput> + <userinput>sed s/"@datadir@"/"\/usr\/share"/ + dumpkeys.1.in > dumpkeys.1 &&</userinput> + <userinput>sed s/"@datadir@"/"\/usr\/share"/ + loadkeys.1.in > loadkeys.1 &&</userinput> <userinput>cp *.1 /usr/share/man/man1 &&</userinput> <userinput>cp *.4 /usr/share/man/man4 &&</userinput> <userinput>cp *.5 /usr/share/man/man5 &&</userinput> |