0.8.13.79: ...Flew Together
authorNikodemus Siivola <nikodemus@random-state.net>
Wed, 25 Aug 2004 19:25:52 +0000 (19:25 +0000)
committerNikodemus Siivola <nikodemus@random-state.net>
Wed, 25 Aug 2004 19:25:52 +0000 (19:25 +0000)
           * "Oops." Fix the piping to /dev/null in
      tools-for-build/grovel-features.sh so that it doesn't
      puke compiler-errors all over the place -- specifically
      to local-target-features.lisp-expr...

tools-for-build/grovel-features.sh
version.lisp-expr

index 0931c18..0ba0760 100644 (file)
@@ -14,7 +14,7 @@ DIR=tools-for-build
 featurep() {
     bin="$DIR/$1-test"
     rm -f $bin
-    cc $DIR/$1-test.c $2 -o $bin 2>&1 > /dev/null && $bin 2>&1 /dev/null
+    cc $DIR/$1-test.c $2 -o $bin > /dev/null 2>&1 && $bin > /dev/null 2>&1
     if [ "$?" = 104 ]
     then
        printf " :$1"
index b5b3395..a8ed365 100644 (file)
@@ -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.78"
+"0.8.13.79"