svn commit: r208353 - head

Jung-uk Kim jkim at FreeBSD.org
Thu May 20 16:24:13 UTC 2010


Author: jkim
Date: Thu May 20 16:24:12 2010
New Revision: 208353
URL: http://svn.freebsd.org/changeset/base/208353

Log:
  We do not have to build makewhatis as a bootstrap tool when it is disabled
  by WITHOUT_MAN_UTILS.

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Thu May 20 16:21:19 2010	(r208352)
+++ head/Makefile.inc1	Thu May 20 16:24:12 2010	(r208353)
@@ -961,6 +961,10 @@ _dtrace_tools= cddl/usr.bin/sgsmsg cddl/
     lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
 .endif
 
+.if ${MK_MAN_UTILS} != "no"
+_makewhatis=	usr.bin/makewhatis
+.endif
+
 bootstrap-tools:
 .for _tool in \
     ${_dtrace_tools} \
@@ -969,7 +973,7 @@ bootstrap-tools:
     ${_groff} \
     ${_ar} \
     usr.bin/lorder \
-    usr.bin/makewhatis \
+    ${_makewhatis} \
     ${_mklocale} \
     usr.bin/rpcgen \
     ${_sed} \


More information about the svn-src-all mailing list