diff options
author | jkim <jkim@FreeBSD.org> | 2010-05-20 20:15:56 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2010-05-20 20:15:56 +0000 |
commit | ac7a95891996f0585271827cb60fd76ad310318f (patch) | |
tree | 7d916cf5a7e3dee04bf8239b2ffb0fcf7c5d59b9 | |
parent | a46b85a3539bd84d9a5f8318c93fa3c088ccb823 (diff) | |
download | FreeBSD-src-ac7a95891996f0585271827cb60fd76ad310318f.zip FreeBSD-src-ac7a95891996f0585271827cb60fd76ad310318f.tar.gz |
Revert r208353. It did not work as I expected because WITHOUT_MAN is set
for bootstrap-tools target and WITHOUT_MAN_UTILS was implied by default.
Pointy hat: jkim
-rw-r--r-- | Makefile.inc1 | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 27cc401..6342de4 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -961,10 +961,6 @@ _dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \ 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} \ @@ -973,7 +969,7 @@ bootstrap-tools: ${_groff} \ ${_ar} \ usr.bin/lorder \ - ${_makewhatis} \ + usr.bin/makewhatis \ ${_mklocale} \ usr.bin/rpcgen \ ${_sed} \ |