diff options
author | gjb <gjb@FreeBSD.org> | 2013-09-13 03:39:19 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2013-09-13 03:39:19 +0000 |
commit | acb9f7ba6185fe661cada92df79c40b500ea2147 (patch) | |
tree | bf9c1a6d39839e16e6fabba11bad6da7db7c6bde /share/man/man5/Makefile | |
parent | a19fbd832b8e3e7417f6dd0e18c6b0f63ea5c280 (diff) | |
download | FreeBSD-src-acb9f7ba6185fe661cada92df79c40b500ea2147.zip FreeBSD-src-acb9f7ba6185fe661cada92df79c40b500ea2147.tar.gz |
Do not install freebsd-update.conf.5 manual if WITHOUT_FREEBSD_UPDATE is
set.
MFC after: 3 days
Approved by: re (delphij)
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'share/man/man5/Makefile')
-rw-r--r-- | share/man/man5/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/share/man/man5/Makefile b/share/man/man5/Makefile index 5a337b8..6e4aa84 100644 --- a/share/man/man5/Makefile +++ b/share/man/man5/Makefile @@ -26,7 +26,6 @@ MAN= acct.5 \ fbtab.5 \ fdescfs.5 \ forward.5 \ - freebsd-update.conf.5 \ fs.5 \ fstab.5 \ group.5 \ @@ -87,6 +86,10 @@ ATF= ${.CURDIR}/../../../contrib/atf _atf_formats.5= atf-formats.5 .endif +.if ${MK_FREEBSD_UPDATE} != "no" +MAN+= freebsd-update.conf.5 +.endif + .if ${MK_HESIOD} != "no" MAN+= hesiod.conf.5 .endif |