Date: Thu, 20 May 2010 16:24:12 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r208353 - head Message-ID: <201005201624.o4KGOCgf046278@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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} \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005201624.o4KGOCgf046278>