diff options
author | Boris Nagaev <bnagaev@gmail.com> | 2015-10-18 23:11:28 +0300 |
---|---|---|
committer | Boris Nagaev <bnagaev@gmail.com> | 2015-10-22 19:13:08 +0000 |
commit | 45fe3f1cde1e516d1ddccddb5e33ea4316497c36 (patch) | |
tree | 41d4c857f30937b0a550bc7ff9c5f69412efd094 | |
parent | 456f721917d07b3dd4259c324ff216f90bd32139 (diff) |
-rwxr-xr-x | configure | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -3613,10 +3613,9 @@ END { print "DEFAULT_LIBDIRS=\"/lib\n/usr/lib\"\n"; }' -unset tty -[ "$OPT_VERBOSE" = "yes" ] && tty=/dev/stderr -eval "`LC_ALL=C $TEST_COMPILER $SYSROOT_FLAG $TEST_COMPILER_CXXFLAGS -xc++ -E -v - < /dev/null 2>&1 > /dev/null | $AWK "$awkprog" | tee $tty`" -unset tty +awkprog_result=`LC_ALL=C $TEST_COMPILER $SYSROOT_FLAG $TEST_COMPILER_CXXFLAGS -xc++ -E -v - < /dev/null 2>&1 > /dev/null | $AWK "$awkprog"` +eval "$awkprog_result" +[ "$OPT_VERBOSE" = "yes" ] && echo "$awkprog_result" echo "Done running configuration tests." |