From 01bf4e2a69cdd869e1662304b5680f643330c2aa Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Tue, 18 Feb 2003 15:22:40 +0000 Subject: [PATCH] 0.7.12.43: contrib/ adjustments ... make binary-distribution.sh aware of contrib/ ... we run $gnumake test before $gnumake install ourselves, so don't make the install target depend on test --- binary-distribution.sh | 8 +++++++- contrib/sb-bsd-sockets/Makefile | 2 +- contrib/sb-rotate-byte/Makefile | 2 +- contrib/vanilla-module.mk | 2 +- src/compiler/srctran.lisp | 2 +- version.lisp-expr | 2 +- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/binary-distribution.sh b/binary-distribution.sh index 144830d..0bd5557 100755 --- a/binary-distribution.sh +++ b/binary-distribution.sh @@ -15,4 +15,10 @@ tar -cf $b-binary.tar \ $b/BUGS $b/COPYING $b/CREDITS $b/INSTALL $b/NEWS $b/README \ $b/install.sh \ $b/doc/sbcl.1 \ - $b/pubring.pgp + $b/pubring.pgp \ + $b/contrib/vanilla-module.mk \ + `for dir in $b/contrib/*; do + if test -d $dir && test -e $dir/Makefile; then + echo $dir + fi + done` diff --git a/contrib/sb-bsd-sockets/Makefile b/contrib/sb-bsd-sockets/Makefile index d9ca28f..ebb6c68 100644 --- a/contrib/sb-bsd-sockets/Makefile +++ b/contrib/sb-bsd-sockets/Makefile @@ -11,6 +11,6 @@ test: all $(SBCL) --eval '(load "../asdf/asdf")' -install: test +install: tar cf - . | ( cd $(INSTALL_DIR) && tar xpvf - ) ( cd $(SBCL_HOME)/systems && ln -fs ../$(SYSTEM)/$(SYSTEM).asd . ) diff --git a/contrib/sb-rotate-byte/Makefile b/contrib/sb-rotate-byte/Makefile index 8ad532a..e77fc03 100644 --- a/contrib/sb-rotate-byte/Makefile +++ b/contrib/sb-rotate-byte/Makefile @@ -18,6 +18,6 @@ test: all $(SBCL) --eval '(load "../asdf/asdf")' -install: test +install: tar cf - . | ( cd $(INSTALL_DIR) && tar xpvf - ) ( cd $(SBCL_HOME)/systems && ln -fs ../$(SYSTEM)/$(SYSTEM).asd . ) diff --git a/contrib/vanilla-module.mk b/contrib/vanilla-module.mk index 25efdd1..4b86e46 100644 --- a/contrib/vanilla-module.mk +++ b/contrib/vanilla-module.mk @@ -4,5 +4,5 @@ $(MODULE).fasl: $(MODULE).lisp test:: $(MODULE).fasl -install: test +install: cp $(MODULE).fasl $(INSTALL_DIR) diff --git a/src/compiler/srctran.lisp b/src/compiler/srctran.lisp index d7b8385..158b276 100644 --- a/src/compiler/srctran.lisp +++ b/src/compiler/srctran.lisp @@ -29,7 +29,7 @@ (define-source-transform identity (x) `(prog1 ,x)) (define-source-transform values (x) `(prog1 ,x)) -;;; Bind the value and make a closure that returns them. +;;; Bind the value and make a closure that returns it. (define-source-transform constantly (value) (let ((rest (gensym "CONSTANTLY-REST-")) (n-value (gensym "CONSTANTLY-VALUE-"))) diff --git a/version.lisp-expr b/version.lisp-expr index 01a8835..1e65f7f 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -18,4 +18,4 @@ ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.7.12.42" +"0.7.12.43" -- 1.7.10.4