[cmucl-commit] [git] CMU Common Lisp branch master updated. snapshot-2014-01-2-gb039aef

Raymond Toy rtoy at common-lisp.net
Sun Jan 5 03:15:03 UTC 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMU Common Lisp".

The branch, master has been updated
       via  b039aef5dc968d954b2da2c0987a4dd24fc4d32c (commit)
       via  56e35f5d99ebca00db131d0c7fb751baf782af48 (commit)
      from  7bb20e4cfe7f12567dcbffa0a584f9d01fad5e64 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b039aef5dc968d954b2da2c0987a4dd24fc4d32c
Author: Raymond Toy <toy.raymond at gmail.com>
Date:   Sat Jan 4 19:14:23 2014 -0800

    Use the correct syntax to match Power Mac for uname -m.

diff --git a/bin/build-all.sh b/bin/build-all.sh
index 0bf6ed5..6313062 100755
--- a/bin/build-all.sh
+++ b/bin/build-all.sh
@@ -123,7 +123,7 @@ buildsun4 ()
 
 case `uname -m` in
   i386*|x86*|i86pc) buildx86 ;;
-  sun*|"Power Mac*")
+  sun*|Power\ Mac*)
     # buildsun4 works for sparc and ppc.
     buildsun4 ;;
   *) echo "Unsupported architecture:  `uname -m`" ;;

commit 56e35f5d99ebca00db131d0c7fb751baf782af48
Author: Raymond Toy <toy.raymond at gmail.com>
Date:   Sat Jan 4 19:08:04 2014 -0800

    Use truename of *load-pathname*.

diff --git a/tests/run-tests.lisp b/tests/run-tests.lisp
index 84df410..e4b8b99 100644
--- a/tests/run-tests.lisp
+++ b/tests/run-tests.lisp
@@ -29,7 +29,7 @@
 (setf lisp-unit:*print-failures* t)
 (setf lisp-unit:*print-errors* t)
 
-(defvar *load-path* *load-pathname*)
+(defvar *load-path* (truename *load-pathname*))
 
 (defvar *test-files*
   nil)

-----------------------------------------------------------------------

Summary of changes:
 bin/build-all.sh     |    2 +-
 tests/run-tests.lisp |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMU Common Lisp


More information about the cmucl-commit mailing list