svn commit: r283938 - head

Baptiste Daroussin bapt at FreeBSD.org
Wed Jun 3 06:02:50 UTC 2015


Author: bapt
Date: Wed Jun  3 06:02:49 2015
New Revision: 283938
URL: https://svnweb.freebsd.org/changeset/base/283938

Log:
  mandoc's makewhatis requires gnuzip to be in the path when deadling with
  with compressed manpages.
  
  This should fix spam during installworld: "exec: No such file or directory"
  
  Reported by:	many

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Wed Jun  3 02:50:58 2015	(r283937)
+++ head/Makefile.inc1	Wed Jun  3 06:02:49 2015	(r283938)
@@ -1366,7 +1366,8 @@ _kerberos5_bootstrap_tools= \
 .if ${MK_MANDOCDB} != "no"
 _libohash?=	lib/libohash
 _makewhatis=	lib/libsqlite3 \
-		usr.bin/mandoc
+		usr.bin/mandoc \
+		usr.bin/gzip
 ${_bt}-usr.bin/mandoc: ${_bt}-lib/libohash ${_bt}-lib/libsqlite3
 .else
 _makewhatis=usr.bin/makewhatis


More information about the svn-src-head mailing list