diff options
author | jkim <jkim@FreeBSD.org> | 2010-05-19 23:56:26 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2010-05-19 23:56:26 +0000 |
commit | af364f655a42923777c35e464291c853aaeb196f (patch) | |
tree | f2b8d9c39ec13545accae0a0ea0f50a8a1a7dc03 /etc/periodic | |
parent | 0771bb84c54346d9e3a038665a8b9a5821717f32 (diff) | |
download | FreeBSD-src-af364f655a42923777c35e464291c853aaeb196f.zip FreeBSD-src-af364f655a42923777c35e464291c853aaeb196f.tar.gz |
Add a new build option, MAN_UTILS. This option lets you control building
utilities and related support files for manual pages, which were previously
controlled by MAN. For POLA, the default depends on MAN, i.e., WITHOUT_MAN
implies WITHOUT_MAN_UTILS and WITH_MAN implies WITH_MAN_UTILS. This patch
is slightly improved by me from:
PR: misc/145212
Diffstat (limited to 'etc/periodic')
-rw-r--r-- | etc/periodic/weekly/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/periodic/weekly/Makefile b/etc/periodic/weekly/Makefile index fb8cf72..7f2eae2 100644 --- a/etc/periodic/weekly/Makefile +++ b/etc/periodic/weekly/Makefile @@ -11,7 +11,7 @@ FILES= 340.noid \ FILES+= 310.locate .endif -.if ${MK_MAN} != "no" +.if ${MK_MAN_UTILS} != "no" FILES+= 320.whatis 330.catman .endif |