Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/distrib/sets Apply patch (requested by he):
details: https://anonhg.NetBSD.org/src/rev/4534ba7dbcbc
branches: netbsd-1-5
changeset: 492910:4534ba7dbcbc
user: he <he%NetBSD.org@localhost>
date: Wed Feb 27 20:45:26 2002 +0000
description:
Apply patch (requested by he):
Actually make the exit status collection work.
diffstat:
distrib/sets/maketars | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (22 lines):
diff -r 0a8af67fd638 -r 4534ba7dbcbc distrib/sets/maketars
--- a/distrib/sets/maketars Tue Feb 26 22:36:41 2002 +0000
+++ b/distrib/sets/maketars Wed Feb 27 20:45:26 2002 +0000
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: maketars,v 1.13.10.3 2002/02/26 20:07:40 he Exp $
+# $NetBSD: maketars,v 1.13.10.4 2002/02/27 20:45:26 he Exp $
#
# Make release tar files for some or all lists. Usage:
# maketars [-b] [-x] [-a arch] [-m machine] [-s setsdir] [-d destdir] \
@@ -84,7 +84,7 @@
echo "making $out"
sh $setd/makeflist -a $arch -m $machine -s $setd $setname > ${dest}/tmp/flist
(cd $dest ; pax -w -d -z < ${dest}/tmp/flist) > ${tars}/$out
- es=`expr $es + $?`
+ es=$(($es + $?))
done
rm -f ${dest}/tmp/flist
-exit $es
\ No newline at end of file
+exit $es
Home |
Main Index |
Thread Index |
Old Index