0.7.12.43:
authorChristophe Rhodes <csr21@cam.ac.uk>
Tue, 18 Feb 2003 15:22:40 +0000 (15:22 +0000)
committerChristophe Rhodes <csr21@cam.ac.uk>
Tue, 18 Feb 2003 15:22:40 +0000 (15:22 +0000)
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
contrib/sb-bsd-sockets/Makefile
contrib/sb-rotate-byte/Makefile
contrib/vanilla-module.mk
src/compiler/srctran.lisp
version.lisp-expr

index 144830d..0bd5557 100755 (executable)
@@ -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`
index d9ca28f..ebb6c68 100644 (file)
@@ -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 . )
index 8ad532a..e77fc03 100644 (file)
@@ -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 . )
index 25efdd1..4b86e46 100644 (file)
@@ -4,5 +4,5 @@ $(MODULE).fasl: $(MODULE).lisp
 
 test:: $(MODULE).fasl
 
-install: test
+install:
        cp $(MODULE).fasl $(INSTALL_DIR)
index d7b8385..158b276 100644 (file)
@@ -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-")))
index 01a8835..1e65f7f 100644 (file)
@@ -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"