diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2010-05-19 23:56:26 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2010-05-19 23:56:26 +0000 |
commit | 07e547fe269ed033815731e88297af5409ebad28 (patch) | |
tree | f2b8d9c39ec13545accae0a0ea0f50a8a1a7dc03 /usr.bin/Makefile | |
parent | 56b6785885762d95982f62ba0189b67005e13cb4 (diff) | |
download | src-07e547fe269ed033815731e88297af5409ebad28.tar.gz src-07e547fe269ed033815731e88297af5409ebad28.zip |
Notes
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index a0e67e2443c1..29564455c983 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -120,7 +120,7 @@ SUBDIR= alias \ m4 \ ${_mail} \ ${_make} \ - makewhatis \ + ${_makewhatis} \ mesg \ minigzip \ ministat \ @@ -256,7 +256,7 @@ _at= at _atm= atm .endif -.if ${MK_MAN} != "no" +.if ${MK_MAN_UTILS} != "no" _catman= catman .endif @@ -309,6 +309,10 @@ _msgs= msgs _make= make .endif +.if ${MK_MAN_UTILS} != "no" +_makewhatis= makewhatis +.endif + .if ${MK_NETCAT} != "no" _nc= nc .endif |