From: Cary Coutant Date: Sat, 5 Jan 2013 00:00:51 +0000 (+0000) Subject: gold/ X-Git-Tag: sid-snapshot-20130201~315 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26e4ef59d66e2435d9afe2a39b0c6e73204537d3;p=external%2Fbinutils.git gold/ * configure.ac: Fix typo restoring CXXFLAGS. * configure: Regenerate. --- diff --git a/gold/ChangeLog b/gold/ChangeLog index e13b492..ad8e4a7 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,5 +1,10 @@ 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. (debug_msg_so.err, debug_msg_ndebug.err): Use CXXLINK_S. * testsuite/Makefile.in: Regenerate. diff --git a/gold/configure b/gold/configure index 22d9b48..e3c0bda 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 9d23835..e49d6e8 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])