svn commit: r491359 - head/shells/zsh/files

Baptiste Daroussin bapt at FreeBSD.org
Sun Jan 27 15:37:15 UTC 2019


Author: bapt
Date: Sun Jan 27 15:37:13 2019
New Revision: 491359
URL: https://svnweb.freebsd.org/changeset/ports/491359

Log:
  Commit forgotten patch:
  
  Mandoc was not able to find zshbuiltin.1 in the path

Added:
  head/shells/zsh/files/patch-Util_helpfiles   (contents, props changed)

Added: head/shells/zsh/files/patch-Util_helpfiles
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/shells/zsh/files/patch-Util_helpfiles	Sun Jan 27 15:37:13 2019	(r491359)
@@ -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)) {


More information about the svn-ports-all mailing list