Source-Changes-HG archive

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

[src/netbsd-1-6]: src/distrib/sets Pull up revision 1.25 (requested by lukem):



details:   https://anonhg.NetBSD.org/src/rev/c32efcaa7a8f
branches:  netbsd-1-6
changeset: 528582:c32efcaa7a8f
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue Jul 23 09:16:32 2002 +0000

description:
Pull up revision 1.25 (requested by lukem):
set  MAKE="${MAKE:-make} -j 1"  to prevent problems where the output
of make -j N>1 would result in junk in various shell variables

diffstat:

 distrib/sets/maketars |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r 93fa423c006f -r c32efcaa7a8f distrib/sets/maketars
--- a/distrib/sets/maketars     Tue Jul 23 09:16:20 2002 +0000
+++ b/distrib/sets/maketars     Tue Jul 23 09:16:32 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: maketars,v 1.24 2002/05/19 13:24:22 lukem Exp $
+# $NetBSD: maketars,v 1.24.2.1 2002/07/23 09:16:32 lukem Exp $
 #
 # Make release tar files for some or all lists.  Usage:
 # maketars [-b] [-x] [-a arch] [-m machine] [-s setsdir]
@@ -8,9 +8,9 @@
 #
 
 # set defaults
-: ${MAKE=make}
 : ${PAX=pax}
 : ${MTREE=mtree}
+MAKE="${MAKE:-make} -j 1"
 
 machine=`${MAKE} print_machine`
 machine_arch=`${MAKE} print_machine_arch`



Home | Main Index | Thread Index | Old Index