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.11 (requested by lukem):
details: https://anonhg.NetBSD.org/src/rev/f39082220a2c
branches: netbsd-1-6
changeset: 528579:f39082220a2c
user: lukem <lukem%NetBSD.org@localhost>
date: Tue Jul 23 09:15:58 2002 +0000
description:
Pull up revision 1.11 (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/makeobsolete | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (24 lines):
diff -r 3e80f75b76a2 -r f39082220a2c distrib/sets/makeobsolete
--- a/distrib/sets/makeobsolete Tue Jul 23 09:15:47 2002 +0000
+++ b/distrib/sets/makeobsolete Tue Jul 23 09:15:58 2002 +0000
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: makeobsolete,v 1.10 2002/04/09 06:07:17 tron Exp $
+# $NetBSD: makeobsolete,v 1.10.2.1 2002/07/23 09:15:58 lukem Exp $
#
# Print out the obsolete files for a set
# Usage: makeobsolete [-b] [-x] [-a arch] [-m machine] [-s setsdir] \
@@ -8,9 +8,9 @@
#
# set defaults
-: ${MAKE=make}
-machine=${MACHINE:-`printf 'xxx:\n\techo ${MACHINE}' | $MAKE -s -f-`}
-arch=${MACHINE_ARCH:-`printf 'xxx:\n\techo ${MACHINE_ARCH}' | $MAKE -s -f-`}
+MAKE="${MAKE:-make} -j 1"
+machine=${MACHINE:-`printf 'xxx:\n\techo ${MACHINE}' | ${MAKE} -s -f-`}
+arch=${MACHINE_ARCH:-`printf 'xxx:\n\techo ${MACHINE_ARCH}' | ${MAKE} -s -f-`}
setd=`pwd`
nlists="base comp etc games man misc text"
xlists="xbase xcomp xcontrib xfont xserver xmisc"
Home |
Main Index |
Thread Index |
Old Index