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.49 (requested by lukem):



details:   https://anonhg.NetBSD.org/src/rev/3e80f75b76a2
branches:  netbsd-1-6
changeset: 528578:3e80f75b76a2
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue Jul 23 09:15:47 2002 +0000

description:
Pull up revision 1.49 (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/makeflist |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r dea16461735a -r 3e80f75b76a2 distrib/sets/makeflist
--- a/distrib/sets/makeflist    Tue Jul 23 09:15:36 2002 +0000
+++ b/distrib/sets/makeflist    Tue Jul 23 09:15:47 2002 +0000
@@ -1,13 +1,13 @@
 #!/bin/sh
 #
-# $NetBSD: makeflist,v 1.47.2.1 2002/07/18 04:47:47 lukem Exp $
+# $NetBSD: makeflist,v 1.47.2.2 2002/07/23 09:15:47 lukem Exp $
 #
 # Print out the files in some or all lists.
 # Usage: makeflist [-b] [-x] [-a arch] [-m machine] [-s setsdir] [setname ...]
 #
 
 # set defaults
-: ${MAKE=make}
+MAKE="${MAKE:-make} -j 1"
 machine=`${MAKE} print_machine`
 machine_arch=`${MAKE} print_machine_arch`
 machine_cpu=`${MAKE} print_machine_cpu`



Home | Main Index | Thread Index | Old Index