Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/etc Slight tweak to the EXTRA_KERNELS build commands to work...



details:   https://anonhg.NetBSD.org/src/rev/9d8173ad8c12
branches:  trunk
changeset: 471695:9d8173ad8c12
user:      fair <fair%NetBSD.org@localhost>
date:      Thu Apr 08 08:24:44 1999 +0000

description:
Slight tweak to the EXTRA_KERNELS build commands to work around a shell
parsing wierdness.

diffstat:

 etc/Makefile |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (29 lines):

diff -r 03fb8f653539 -r 9d8173ad8c12 etc/Makefile
--- a/etc/Makefile      Thu Apr 08 07:10:20 1999 +0000
+++ b/etc/Makefile      Thu Apr 08 08:24:44 1999 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.114 1999/04/04 09:57:11 fair Exp $
+#      $NetBSD: Makefile,v 1.115 1999/04/08 08:24:44 fair Exp $
 #      from: @(#)Makefile      8.7 (Berkeley) 5/25/95
 
 # Environment variables without default values:
@@ -273,8 +273,8 @@
 .ifndef UPDATE
        cd ${KERNOBJDIR}/GENERIC && ${MAKE} clean 
 .endif
+       cd ${KERNOBJDIR}/GENERIC && ${MAKE} depend && ${MAKE} ${_J}
        cd ${KERNOBJDIR}/GENERIC &&     \
-               ${MAKE} depend && ${MAKE} ${_J} &&      \
                tar cf - `awk '$$1=="config" {print $$2}'  \
                        ${KERNCONFDIR}/GENERIC` |\
                gzip -c -9 > ${RELEASEDIR}/binary/sets/kern.tgz
@@ -284,8 +284,8 @@
 .ifndef UPDATE
        cd ${KERNOBJDIR}/${configfile} && ${MAKE} clean 
 .endif
+       cd ${KERNOBJDIR}/${configfile} && ${MAKE} depend && ${MAKE} ${_J}
        cd ${KERNOBJDIR}/${configfile} &&       \
-               ${MAKE} depend && ${MAKE} ${_J} &&      \
                for kernel in `awk '$$1=="config" {print $$2}' \
                        ${KERNCONFDIR}/${configfile}` ; {   \
                gzip -c -9 < $${kernel} > \



Home | Main Index | Thread Index | Old Index