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 768980ba86fe3e262da0016be08a89668f3e6157 (commit) via 1a8aa0f859740a975d102300c9fecc2931f7c426 (commit) from 28a0d7934b9e71f5fcddfffcd41fc0027ffb0d99 (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 768980ba86fe3e262da0016be08a89668f3e6157 Author: Raymond Toy toy.raymond@gmail.com Date: Sun Jan 22 16:44:49 2012 -0800
Only set UNIDATA_PATH if it's defined.
diff --git a/src/lisp/lisp.c b/src/lisp/lisp.c index c489cb0..4a1ed35 100644 --- a/src/lisp/lisp.c +++ b/src/lisp/lisp.c @@ -902,9 +902,11 @@ main(int argc, const char *argv[], const char *envp[]) SetSymbolValue(BATCH_MODE, T); }
+#ifdef UNIDATA_PATH if (unidata) { SetSymbolValue(UNIDATA_PATH, alloc_string(unidata)); } +#endif
/* * Pick off sigint until the lisp system gets far enough along to
commit 1a8aa0f859740a975d102300c9fecc2931f7c426 Author: Raymond Toy toy.raymond@gmail.com Date: Sun Jan 22 10:48:32 2012 -0800
Oops. Update path to clean-target.sh.
diff --git a/bin/cross-build-world.sh b/bin/cross-build-world.sh index d3c64b0..58e210e 100755 --- a/bin/cross-build-world.sh +++ b/bin/cross-build-world.sh @@ -67,7 +67,7 @@ fi
if [ "$CLEAN_DIR" = "yes" ]; then echo "Cleaning directories: $TARGET $CROSS" - src/tools/clean-target.sh $TARGET $CROSS + bin/clean-target.sh $TARGET $CROSS fi
if [ ! -d "$CROSS" ]
-----------------------------------------------------------------------
Summary of changes: bin/cross-build-world.sh | 2 +- src/lisp/lisp.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletions(-)
hooks/post-receive