* configure.in: If as or ld segfaults, don't clutter with it stdout.
* configure: Rebuilt.
From-SVN: r53243
+2002-05-07 Jakub Jelinek <jakub@redhat.com>
+
+ * configure.in: If as or ld segfaults, don't clutter with it stdout.
+ * configure: Rebuilt.
+
2002-05-05 Jakub Jelinek <jakub@redhat.com>
PR target/6561
.LEFDE3:
.4byte 0
EOF
- if $gcc_cv_as -o conftest.o conftest.s 1>&5 2>&1; then
- if $gcc_cv_ld --eh-frame-hdr -shared -o conftest.so conftest.o 1>&5 2>&1; then
+ if ($gcc_cv_as -o conftest.o conftest.s; exit $?) 1>&5 2>&1; then
+ if ($gcc_cv_ld --eh-frame-hdr -shared -o conftest.so conftest.o; exit $?) 1>&5 2>&1; then
if $gcc_cv_objdump -h conftest.so 2>&5 \
| grep 'eh_frame_hdr[ ]*0*[01][048cC][ ]' 1>&5 2>&1; then
gcc_cv_ld_eh_frame_hdr_works=yes; break
.LEFDE3:
.4byte 0
EOF
- if $gcc_cv_as -o conftest.o conftest.s 1>&AC_FD_CC 2>&1; then
- if $gcc_cv_ld --eh-frame-hdr -shared -o conftest.so conftest.o 1>&AC_FD_CC 2>&1; then
+ if ($gcc_cv_as -o conftest.o conftest.s; exit $?) 1>&AC_FD_CC 2>&1; then
+ if ($gcc_cv_ld --eh-frame-hdr -shared -o conftest.so conftest.o; exit $?) 1>&AC_FD_CC 2>&1; then
changequote(,)dnl
if $gcc_cv_objdump -h conftest.so 2>&AC_FD_CC \
| grep 'eh_frame_hdr[ ]*0*[01][048cC][ ]' 1>&AC_FD_CC 2>&1; then