From 9650e60a5cb033bdee4214afb138ea7cf200dfc9 Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Fri, 14 Feb 2014 18:29:28 +0200 Subject: [PATCH] support/configure.inc: fix crosscompiling --cc= can be whatever. there should be no check if generated binaries can run while crosscompiling. --- support/configure.inc | 2 -- 1 file changed, 2 deletions(-) diff --git a/support/configure.inc b/support/configure.inc index 7c60fcb1..bddc6fc1 100755 --- a/support/configure.inc +++ b/support/configure.inc @@ -265,8 +265,6 @@ int main() { EOF $CC $CFLAGS $LDFLAGS $TMPDIR/$$.c -o $TMPDIR/$$.bin $opt &> /dev/null RET=$? - [ $RET -eq 0 ] && $TMPDIR/$$.bin - RET=$? rm -f $TMPDIR/$$.{c,bin} return $RET }