mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
38 lines
1 KiB
Bash
38 lines
1 KiB
Bash
|
commit 6cfb57d8501e51f7bc6455ff7662be90fe9d6e7a
|
||
|
Author: orbea <orbea@fredslev.dk>
|
||
|
Date: Mon Mar 12 19:59:25 2018 -0700
|
||
|
|
||
|
doc: Fix referenced man page paths.
|
||
|
|
||
|
With mandoc opening these man pages will print the following error.
|
||
|
|
||
|
man: bash.1: ERROR: No such file or directory
|
||
|
|
||
|
The issue is that .so requires the prefix path such as man1 while some
|
||
|
man implementations seemingly ignore this.
|
||
|
|
||
|
diff --git a/doc/builtins.1 b/doc/builtins.1
|
||
|
index 829a49c2..dde1bbef 100644
|
||
|
--- a/doc/builtins.1
|
||
|
+++ b/doc/builtins.1
|
||
|
@@ -19,6 +19,6 @@ shift, shopt, source, suspend, test, times, trap, true, type, typeset,
|
||
|
ulimit, umask, unalias, unset, wait \- bash built-in commands, see \fBbash\fR(1)
|
||
|
.SH BASH BUILTIN COMMANDS
|
||
|
.nr zZ 1
|
||
|
-.so bash.1
|
||
|
+.so man1/bash.1
|
||
|
.SH SEE ALSO
|
||
|
bash(1), sh(1)
|
||
|
diff --git a/doc/rbash.1 b/doc/rbash.1
|
||
|
index 56e38fd0..a25fe11e 100644
|
||
|
--- a/doc/rbash.1
|
||
|
+++ b/doc/rbash.1
|
||
|
@@ -3,6 +3,6 @@
|
||
|
rbash \- restricted bash, see \fBbash\fR(1)
|
||
|
.SH RESTRICTED SHELL
|
||
|
.nr zY 1
|
||
|
-.so bash.1
|
||
|
+.so man1/bash.1
|
||
|
.SH SEE ALSO
|
||
|
bash(1)
|