support/configure.inc: fix crosscompiling

--cc= can be whatever. there should be no check if generated
binaries can run while crosscompiling.
This commit is contained in:
Stefan Saraev 2014-02-14 18:29:28 +02:00
parent 56a39c5c19
commit 9650e60a5c

View file

@ -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
}