[cmucl-cvs] CMUCL commit: src/tools (make-dist.sh)
Raymond Toy
rtoy at common-lisp.net
Thu Dec 23 03:17:43 UTC 2010
Date: Wednesday, December 22, 2010 @ 22:17:43
Author: rtoy
Path: /project/cmucl/cvsroot/src/tools
Modified: make-dist.sh
Recognize NetBSD defaults.
--------------+
make-dist.sh | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
Index: src/tools/make-dist.sh
diff -u src/tools/make-dist.sh:1.18 src/tools/make-dist.sh:1.19
--- src/tools/make-dist.sh:1.18 Tue Dec 21 21:12:52 2010
+++ src/tools/make-dist.sh Wed Dec 22 22:17:43 2010
@@ -9,7 +9,7 @@
# you extracted the two tarballs and the source distribution into that
# directory.
#
-# $Header: /project/cmucl/cvsroot/src/tools/make-dist.sh,v 1.18 2010-12-22 02:12:52 rtoy Exp $
+# $Header: /project/cmucl/cvsroot/src/tools/make-dist.sh,v 1.19 2010-12-23 03:17:43 rtoy Exp $
usage() {
echo "make-dist.sh: [-hbg] [-G group] [-O owner] [-I destdir] [-M mandir] dir version [arch os]"
@@ -75,7 +75,10 @@
case `uname -m` in
i386) ARCH=x86 ;;
*) ARCH=ppc ;;
- esac
+ esac ;;
+ NetBSD)
+ ARCH=x86
+ OS=netbsd
esac
}
More information about the cmucl-cvs
mailing list