Date: Sun, 27 Jan 2019 15:37:14 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491359 - head/shells/zsh/files Message-ID: <201901271537.x0RFbEvw074682@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901271537.x0RFbEvw074682>