From: Roland McGrath Date: Thu, 12 Aug 2004 06:12:22 +0000 (+0000) Subject: 2004-08-11 Roland McGrath X-Git-Tag: cvs/fedora-base~209 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=206f5e806d27ba1bd19762751e013c8064fe05ca;p=thirdparty%2Fglibc.git 2004-08-11 Roland McGrath * configure.in (libc_cv_cpp_asm_debuginfo): Add missing braces around commands inside &&. Reported by Andreas Schwab . * configure: Regenerated. --- diff --git a/configure b/configure index 914ceaf1e66..e3eda445756 100755 --- a/configure +++ b/configure @@ -6177,7 +6177,7 @@ if { ac_try='${CC-cc} $CPPFLAGS $ASFLAGS -g -c conftest.S 1>&5' (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && + (exit $ac_status); }; } && { ac_pattern='conftest\.S' { ac_try='readelf --debug-dump=line conftest.o | grep $ac_pattern 1>&5' @@ -6185,7 +6185,8 @@ if { ac_try='${CC-cc} $CPPFLAGS $ASFLAGS -g -c conftest.S 1>&5' (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then + (exit $ac_status); }; } + }; then libc_cv_cpp_asm_debuginfo=yes else libc_cv_cpp_asm_debuginfo=no diff --git a/configure.in b/configure.in index 099a9e216ef..e6976ce7f56 100644 --- a/configure.in +++ b/configure.in @@ -1675,10 +1675,11 @@ foo: /* comment */ nop EOF -if AC_TRY_COMMAND([${CC-cc} $CPPFLAGS $ASFLAGS -g -c conftest.S 1>&AS_MESSAGE_LOG_FD]) && +if AC_TRY_COMMAND([${CC-cc} $CPPFLAGS $ASFLAGS -g -c conftest.S 1>&AS_MESSAGE_LOG_FD]) && { ac_pattern='conftest\.S' AC_TRY_COMMAND([readelf --debug-dump=line conftest.o | - grep $ac_pattern 1>&AS_MESSAGE_LOG_FD]); then + grep $ac_pattern 1>&AS_MESSAGE_LOG_FD]) + }; then libc_cv_cpp_asm_debuginfo=yes else libc_cv_cpp_asm_debuginfo=no