1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-06 20:20:20 +02:00

avoid CRLF issues on mingw

2008-05-19  Paolo Bonzini  <bonzini@gnu.org>

	* tests/run-test: Avoid CRLF issues on mingw.
This commit is contained in:
Paolo Bonzini 2008-05-19 10:58:41 +02:00
parent beb5fa12ec
commit 5ab8cddd61
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2008-05-19 Paolo Bonzini <bonzini@gnu.org>
* tests/run-test: Avoid CRLF issues on mingw.
2008-03-21 Paolo Bonzini <bonzini@gnu.org> 2008-03-21 Paolo Bonzini <bonzini@gnu.org>
* lightning/i386/core-64.h: Fix jit_{ld,st}{,x}i_{i,l}. * lightning/i386/core-64.h: Fix jit_{ld,st}{,x}i_{i,l}.

View file

@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
./$1 > $1.log ./$1 | tr -d \\r > $1.log
if test $? = 77; then if test $? = 77; then
exit 77 exit 77
fi fi