CMUCL commit: src/tools (make-dist.sh)

Raymond Toy rtoy at common-lisp.net
Sat Jan 23 19:02:53 CET 2010


    Date: Saturday, January 23, 2010 @ 13:02:53
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/tools

Modified: make-dist.sh

For Solaris, detect which OS version we're building on and choose the
default OS name for the tarballs.


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


Index: src/tools/make-dist.sh
diff -u src/tools/make-dist.sh:1.12 src/tools/make-dist.sh:1.13
--- src/tools/make-dist.sh:1.12	Wed Aug 19 13:58:49 2009
+++ src/tools/make-dist.sh	Sat Jan 23 13:02:53 2010
@@ -37,7 +37,11 @@
     case `uname -s` in
       SunOS)
 	  ARCH=sparcv9
-	  OS=solaris8
+	  case `uname -r` in
+	    5.10) OS=solaris10 ;;
+	    5.9) OS=solaris9 ;;
+	    5.8) OS=solaris8 ;;
+	  esac
 	  ;;
       Linux)
 	  ARCH=x86



More information about the cmucl-commit mailing list