0.8.13.27:
authorChristophe Rhodes <csr21@cam.ac.uk>
Thu, 5 Aug 2004 10:43:08 +0000 (10:43 +0000)
committerChristophe Rhodes <csr21@cam.ac.uk>
Thu, 5 Aug 2004 10:43:08 +0000 (10:43 +0000)
Make make-config.sh work better on SunOS (thanks to Vincent
Arkensteijn)

make-config.sh
version.lisp-expr

index f26c251..3f58b71 100644 (file)
@@ -214,5 +214,9 @@ echo ')' >> $ltf
 
 # Make a unique ID for this build (to discourage people from
 # mismatching sbcl and *.core files).
-echo '"'`hostname`-`whoami`-`date +%F-%H-%M-%S`'"' > output/build-id.tmp
+if [ `uname` = "SunOS" ] ; then
+  # use /usr/xpg4/bin/id instead of /usr/bin/id
+  PATH=/usr/xpg4/bin:$PATH
+fi
+echo '"'`hostname`-`id -un`-`date +%Y-%m-%d-%H-%M-%S`'"' > output/build-id.tmp
 
index ca728cc..82995d7 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.13.26"
+"0.8.13.27"