diff options
author | obrien <obrien@FreeBSD.org> | 2000-06-17 10:56:15 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-06-17 10:56:15 +0000 |
commit | 72dbbe24eb4f86ab6c34fcc8f32b2bcabd1151e3 (patch) | |
tree | 7dfa67ecba854831946696756d5f6381a9d69ac7 /sys/conf/Makefile.alpha | |
parent | 53eb2d3431409c4cd030d84376e5cfd29c3cd3fc (diff) | |
download | FreeBSD-src-72dbbe24eb4f86ab6c34fcc8f32b2bcabd1151e3.zip FreeBSD-src-72dbbe24eb4f86ab6c34fcc8f32b2bcabd1151e3.tar.gz |
Add back "NO_MODULES" as using ``make -DMODULES_WITH_WORLD'' in the
kernel build dir doesn't really say what your intentions are.
Diffstat (limited to 'sys/conf/Makefile.alpha')
-rw-r--r-- | sys/conf/Makefile.alpha | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/conf/Makefile.alpha b/sys/conf/Makefile.alpha index eb496c6..b0dcd88 100644 --- a/sys/conf/Makefile.alpha +++ b/sys/conf/Makefile.alpha @@ -274,7 +274,7 @@ kernel-reinstall kernel-reinstall.debug: install -c -m 555 -o root -g wheel -fschg \ ${KERNEL}${.TARGET:S/kernel-reinstall//} ${DESTDIR}/${KERNEL} -.if !defined(MODULES_WITH_WORLD) && exists($S/modules) +.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists($S/modules) all: modules depend: modules-depend clean: modules-clean |