Skip to content

Commit

Permalink
0.8.13.79: ...Flew Together
Browse files Browse the repository at this point in the history
           * "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...
  • Loading branch information
nikodemus committed Aug 25, 2004
1 parent 4bc6b91 commit 888637f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools-for-build/grovel-features.sh
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Expand Up @@ -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"

0 comments on commit 888637f

Please sign in to comment.