diff options
author | phk <phk@FreeBSD.org> | 2005-08-05 16:09:34 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2005-08-05 16:09:34 +0000 |
commit | 7fb7d7aef135e13549b0393980600fb9f16937e3 (patch) | |
tree | c6f54e6ad6c86ea1a4fcf944b7eb360d394a0924 /usr.bin/Makefile | |
parent | e3482153d0ac3efc434204558aca72db43994e87 (diff) | |
download | FreeBSD-src-7fb7d7aef135e13549b0393980600fb9f16937e3.zip FreeBSD-src-7fb7d7aef135e13549b0393980600fb9f16937e3.tar.gz |
Let NO_MAN control catman
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index a9f89e0..6528b7b 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -24,7 +24,7 @@ SUBDIR= alias \ ${_c99} \ ${_calendar} \ cap_mkdb \ - catman \ + ${_catman} \ chat \ checknr \ ${_chkey} \ @@ -235,6 +235,10 @@ _truss= truss _atm= atm .endif +.if !defined(NO_MAN) +_catman= catman +.endif + .if !defined(NO_BIND) && !defined(NO_BIND_UTILS) _dig= dig _host= host |