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.4 (requested by lukem):
details: https://anonhg.NetBSD.org/src/rev/dea16461735a
branches: netbsd-1-6
changeset: 528577:dea16461735a
user: lukem <lukem%NetBSD.org@localhost>
date: Tue Jul 23 09:15:36 2002 +0000
description:
Pull up revision 1.4 (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/listpkgs | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (22 lines):
diff -r 7378732421f4 -r dea16461735a distrib/sets/listpkgs
--- a/distrib/sets/listpkgs Tue Jul 23 07:59:45 2002 +0000
+++ b/distrib/sets/listpkgs Tue Jul 23 09:15:36 2002 +0000
@@ -1,14 +1,14 @@
#!/bin/sh
#
-# $NetBSD: listpkgs,v 1.3 2002/03/24 22:15:28 bjh21 Exp $
+# $NetBSD: listpkgs,v 1.3.2.1 2002/07/23 09:15:36 lukem Exp $
#
# List all packages in the given pkgset by parsing the list files.
#
# 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=`dirname $0`
prefix=/
Home |
Main Index |
Thread Index |
Old Index