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} \
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to