From 4d1ad8751d8d9c9501a854d49dcd7db10cb7ca02 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Tue, 22 Oct 2002 15:01:50 +0000 Subject: [PATCH] Invert the logic of the NO_MAKEDEV options to match the 5.0-R default install. --- etc/Makefile | 4 ++-- 1 file 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