[cmucl-cvs] CMUCL commit: src/tools (make-dist.sh)

Raymond Toy rtoy at common-lisp.net
Mon Apr 11 16:34:49 UTC 2011


    Date: Monday, April 11, 2011 @ 12:34:49
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/tools

Modified: make-dist.sh

Automatically select arch and os on FreeBSD, if none given.


--------------+
 make-dist.sh |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)


Index: src/tools/make-dist.sh
diff -u src/tools/make-dist.sh:1.19 src/tools/make-dist.sh:1.20
--- src/tools/make-dist.sh:1.19	Wed Dec 22 22:17:43 2010
+++ src/tools/make-dist.sh	Mon Apr 11 12:34:49 2011
@@ -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.19 2010-12-23 03:17:43 rtoy Exp $
+# $Header: /project/cmucl/cvsroot/src/tools/make-dist.sh,v 1.20 2011-04-11 16:34:49 rtoy Exp $
 
 usage() {
     echo "make-dist.sh: [-hbg] [-G group] [-O owner] [-I destdir] [-M mandir] dir version [arch os]"
@@ -79,6 +79,11 @@
       NetBSD)
 	  ARCH=x86
 	  OS=netbsd
+	  ;;
+      FreeBSD)
+	  ARCH=x86
+	  OS=freebsd_`uname -r | tr 'A-Z' 'a-z'`
+	  ;;
       esac
 }
 




More information about the cmucl-cvs mailing list