build configure script correctly this time; probably merge to 4.2.5

svn: r18573
This commit is contained in:
Matthew Flatt 2010-03-18 13:23:05 +00:00
parent 9a21c31000
commit 590c7514da

View File

@ -13356,10 +13356,10 @@ if test "${libffi_cv_as_x86_atrel+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
libffi_cv_as_x86_atrel=yes
libffi_cv_as_x86_atrel=no
echo '.text; foo: nop; .data; .long foo at rel; .text' > conftest.s
if $CC $CFLAGS -c conftest.s 2>&1 | grep -i warning > /dev/null; then
libffi_cv_as_x86_atrel=no
if $CC $CFLAGS -c conftest.s >/dev/null 2>&1; then
libffi_cv_as_x86_atrel=yes
fi
fi