aboutsummaryrefslogtreecommitdiff
path: root/etc/periodic/weekly
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2008-09-21 22:02:26 +0000
committerSam Leffler <sam@FreeBSD.org>2008-09-21 22:02:26 +0000
commit690f477d75324543e57e2b45354c6e0670b9a5f7 (patch)
tree6d0176f734c952569004dea8a4d84a092ced5821 /etc/periodic/weekly
parenteba1dd2124fa2c06c7ad100d2ac2a3a8786f9c9d (diff)
downloadsrc-690f477d75324543e57e2b45354c6e0670b9a5f7.tar.gz
src-690f477d75324543e57e2b45354c6e0670b9a5f7.zip
add new build knobs and jigger some existing controls to improve
control over the result of buildworld and installworld; this especially helps packaging systems such as nanobsd Reviewed by: various (posted to arch) MFC after: 1 month
Notes
Notes: svn path=/head/; revision=183242
Diffstat (limited to 'etc/periodic/weekly')
-rw-r--r--etc/periodic/weekly/Makefile22
1 files changed, 17 insertions, 5 deletions
diff --git a/etc/periodic/weekly/Makefile b/etc/periodic/weekly/Makefile
index bc97fa9822fa..463520f302d1 100644
--- a/etc/periodic/weekly/Makefile
+++ b/etc/periodic/weekly/Makefile
@@ -1,10 +1,22 @@
# $FreeBSD$
-FILES= 310.locate \
- 320.whatis \
- 330.catman \
- 340.noid \
- 400.status-pkg \
+.include <bsd.own.mk>
+
+FILES= 340.noid \
999.local
+# NB: keep these sorted by MK_* knobs
+
+.if ${MK_LOCATE} != "no"
+FILES+= 310.locate
+.endif
+
+.if ${MK_MAN} != "no"
+FILES+= 320.whatis 330.catman
+.endif
+
+.if ${MK_PKGTOOLS} != "no"
+FLES+= 400.status-pkg
+.endif
+
.include <bsd.prog.mk>