From 888637f090872d0e00a12be331d6a637d4d99dd3 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Wed, 25 Aug 2004 19:25:52 +0000 Subject: [PATCH] 0.8.13.79: ...Flew Together * "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 | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools-for-build/grovel-features.sh b/tools-for-build/grovel-features.sh index 0931c18..0ba0760 100644 --- a/tools-for-build/grovel-features.sh +++ b/tools-for-build/grovel-features.sh @@ -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" diff --git a/version.lisp-expr b/version.lisp-expr index b5b3395..a8ed365 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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" -- 1.7.10.4