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