aboutsummaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2019-01-27 15:37:13 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2019-01-27 15:37:13 +0000
commit2bf3dda12bfc8de48358346a5d376b75322faf3f (patch)
treec997feff9d977b07d912d3af00b802ccc33f6750 /shells
parent32ea23abe7b67bb73362b201383b57b387f2edff (diff)
downloadports-2bf3dda12bfc8de48358346a5d376b75322faf3f.tar.gz
ports-2bf3dda12bfc8de48358346a5d376b75322faf3f.zip
Commit forgotten patch:
Mandoc was not able to find zshbuiltin.1 in the path
Notes
Notes: svn path=/head/; revision=491359
Diffstat (limited to 'shells')
-rw-r--r--shells/zsh/files/patch-Util_helpfiles11
1 files changed, 11 insertions, 0 deletions
diff --git a/shells/zsh/files/patch-Util_helpfiles b/shells/zsh/files/patch-Util_helpfiles
new file mode 100644
index 000000000000..fce6418ba964
--- /dev/null
+++ b/shells/zsh/files/patch-Util_helpfiles
@@ -0,0 +1,11 @@
+--- Util/helpfiles.orig 2019-01-27 15:34:43 UTC
++++ Util/helpfiles
+@@ -57,7 +57,7 @@ $coltmp = $destdir . '/' . $coltmpbase;
+ $args = "$manfile >$mantmp";
+ unlink($mantmp);
+ &Info('attempting man ', $args);
+-if(system('man ' . $args) || !(-s $mantmp)) {
++if(system('man ./' . $args) || !(-s $mantmp)) {
+ unlink($mantmp);
+ &Info('attempting nroff -man ', $args);
+ if(system('nroff -man ' . $args) || !(-s $mantmp)) {