diff options
author | asmodai <asmodai@FreeBSD.org> | 2000-06-21 05:08:45 +0000 |
---|---|---|
committer | asmodai <asmodai@FreeBSD.org> | 2000-06-21 05:08:45 +0000 |
commit | ea011c864f5e53d8490a50d3329f72a16477a9b4 (patch) | |
tree | ad9d9fe12b636eddb49dcefa0ee40702a78fc6da /etc/Makefile | |
parent | cdd0f2dff31cfdde6515c141351b99e6caa38395 (diff) | |
download | FreeBSD-src-ea011c864f5e53d8490a50d3329f72a16477a9b4.zip FreeBSD-src-ea011c864f5e53d8490a50d3329f72a16477a9b4.tar.gz |
Don't build manpages if NOMAN has been set.
PR: 17967
Submitted by: Benno Rice <benno@netizen.com.au>
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/etc/Makefile b/etc/Makefile index f749c0e..d3626c0 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -137,7 +137,9 @@ distribution: (cd ${.CURDIR}/..; \ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FREEBSD} \ ${DESTDIR}/) +.if !defined(NOMAN) (cd ${.CURDIR}/../share/man; ${MAKE} makedb; ) +.endif distrib-dirs: mtree -deU -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/ |