summaryrefslogtreecommitdiffstats
path: root/etc/Makefile
diff options
context:
space:
mode:
authordougb <dougb@FreeBSD.org>2000-10-29 06:57:59 +0000
committerdougb <dougb@FreeBSD.org>2000-10-29 06:57:59 +0000
commitb13f26d45b40a5f2d8c1d7ead5f3ffacf3dd63da (patch)
treeb9f14c7840c1853be5c5c3ffa004051741ce67dd /etc/Makefile
parent46bec1fd0f51f42f9fdb3d7bee144242c6a50aa5 (diff)
downloadFreeBSD-src-b13f26d45b40a5f2d8c1d7ead5f3ffacf3dd63da.zip
FreeBSD-src-b13f26d45b40a5f2d8c1d7ead5f3ffacf3dd63da.tar.gz
Finish the job of conditionalizing UUCP by preventing files in /etc/uucp
from being installed, and make rmail conditional on neither of NO_SENDMAIL and NOUUCP. PR: bin/21321 Submitted by: Me
Diffstat (limited to 'etc/Makefile')
-rw-r--r--etc/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile
index 8c18ea4..15201d4 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -70,7 +70,6 @@ distribution:
master.passwd ${DESTDIR}/etc; \
( cd ${.CURDIR}/periodic; ${MAKE} install ); \
( cd ${.CURDIR}/../gnu/usr.bin/send-pr; ${MAKE} etc-gnats-freefall ); \
- ( cd ${.CURDIR}/../gnu/libexec/uucp/sample; ${MAKE} install ); \
( cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap ); \
( cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt ); \
( cd ${.CURDIR}/sendmail; ${MAKE} etc-sendmail.cf ); \
@@ -78,6 +77,9 @@ distribution:
pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
MAKEDEV.local MAKEDEV ${DESTDIR}/dev )
+.if !defined(NOUUCP)
+ ( cd ${.CURDIR}/../gnu/libexec/uucp/sample; ${MAKE} install )
+.endif
.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSH)
(cd ${.CURDIR}; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${SSH} \
${DESTDIR}/etc/ssh )
OpenPOWER on IntegriCloud