From eba7d5d4fdc9b2516c000eab73828c3ada89b894 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Thu, 5 Aug 2004 10:43:08 +0000 Subject: [PATCH] 0.8.13.27: Make make-config.sh work better on SunOS (thanks to Vincent Arkensteijn) --- make-config.sh | 6 +++++- version.lisp-expr | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/make-config.sh b/make-config.sh index f26c251..3f58b71 100644 --- a/make-config.sh +++ b/make-config.sh @@ -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 diff --git a/version.lisp-expr b/version.lisp-expr index ca728cc..82995d7 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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" -- 1.7.10.4