man-exp.xml 824 B

1234567891011121314151617181920212223242526272829
  1. <sect2>
  2. <title>Command explanations</title>
  3. <para>
  4. <userinput>sed -e 's|in \(.*\$PATH\)|in `echo \1`|' configure...:</userinput>
  5. This fixes a little problem in man's configure. The configure-script
  6. looks for files like cat, gunzip, bzip2, etc. in a for-loop that
  7. walks through a specified path. The splitting of the path is not done
  8. correctly and needs that fix.
  9. </para>
  10. <para>
  11. <userinput>-default:</userinput> This configures the man package with
  12. default settings.
  13. </para>
  14. <para>
  15. <userinput>sed s/AWK=/"AWK=\/usr\/bin\/mawk"/ /usr/sbin/makewhatis &gt;
  16. makewhatis-new:</userinput> This modifies /usr/sbin/makewhatis's AWK
  17. variable and fills in the location of the mawk program.
  18. </para>
  19. <para>
  20. <userinput>chmod 755 /usr/sbin/makewhatis:</userinput> This makes the
  21. makewhatis script executable again.
  22. </para>
  23. </sect2>