aboutsummaryrefslogtreecommitdiff
path: root/etc/Makefile
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2002-10-22 15:01:50 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2002-10-22 15:01:50 +0000
commit4d1ad8751d8d9c9501a854d49dcd7db10cb7ca02 (patch)
tree2e56a14058caf69612ab6aa69baf1be4a4b0eebe /etc/Makefile
parent26c0d986971e91e7a06b4c63f819591e18583d1d (diff)
downloadsrc-4d1ad8751d8d9c9501a854d49dcd7db10cb7ca02.tar.gz
src-4d1ad8751d8d9c9501a854d49dcd7db10cb7ca02.zip
Invert the logic of the NO_MAKEDEV options to match the 5.0-R default install.
Notes
Notes: svn path=/head/; revision=105702
Diffstat (limited to 'etc/Makefile')
-rw-r--r--etc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile
index 414c5502f2a4..0a4ba25b742a 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -95,10 +95,10 @@ distribution:
cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
${SSL} ${DESTDIR}/etc/ssl
.endif
-.if !defined(NO_MAKEDEV_INSTALL)
+.if defined(MAKEDEV_INSTALL)
cd ${.CURDIR}; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \
MAKEDEV.local MAKEDEV ${DESTDIR}/dev
-.if !defined(NO_MAKEDEV_RUN)
+.if defined(MAKEDEV_RUN)
cd ${DESTDIR}/dev; sh MAKEDEV all
.endif
.endif