diff --git a/gold/ChangeLog b/gold/ChangeLog index e13b492070..ad8e4a754b 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,8 @@ +2013-01-04 Cary Coutant + + * configure.ac: Fix typo restoring CXXFLAGS. + * configure: Regenerate. + 2013-01-04 Cary Coutant * testsuite/Makefile.am (CXXLINK_S): New macro. diff --git a/gold/configure b/gold/configure index 22d9b48a13..e3c0bdadb0 100755 --- a/gold/configure +++ b/gold/configure @@ -7320,7 +7320,7 @@ else gold_cv_hash_off_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -CXXFLAGS=$CFLAGS_hold +CXXFLAGS=$CXXFLAGS_hold fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gold_cv_hash_off_t" >&5 $as_echo "$gold_cv_hash_off_t" >&6; } diff --git a/gold/configure.ac b/gold/configure.ac index 9d238355f3..e49d6e81db 100644 --- a/gold/configure.ac +++ b/gold/configure.ac @@ -546,7 +546,7 @@ std::tr1::hash h; ], [gold_cv_hash_off_t=yes], [gold_cv_hash_off_t=no]) -CXXFLAGS=$CFLAGS_hold]) +CXXFLAGS=$CXXFLAGS_hold]) if test "$gold_cv_hash_off_t" = "yes"; then AC_DEFINE(HAVE_TR1_HASH_OFF_T, 1, [Define if std::tr1::hash is usable])