This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Replace == with = in ld/configure.ac


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=621ff761b3ca490233e347411067da9ab72c8d65

commit 621ff761b3ca490233e347411067da9ab72c8d65
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Jan 29 07:47:13 2016 -0800

    Replace == with = in ld/configure.ac
    
    	 PR ld/19533
    	* configure.ac (compressed_debug_sections): Replace == with =.
    	* configure: Regenerated.

Diff:
---
 ld/ChangeLog    | 6 ++++++
 ld/configure    | 2 +-
 ld/configure.ac | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/ld/ChangeLog b/ld/ChangeLog
index 2462b30..b9eac34 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
+2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
+
+	PR ld/19533
+	* configure.ac (compressed_debug_sections): Replace == with =.
+	* configure: Regenerated.
+
 2016-01-22  Pitchumani Sivanupandi  <pitchumani.s@atmel.com>
 
 	* scripttempl/avr.sc (.noinit): Force .noinit VMA to end of .bss VMA.
diff --git a/ld/configure b/ld/configure
index 2141ee7..cb1e573 100755
--- a/ld/configure
+++ b/ld/configure
@@ -17103,7 +17103,7 @@ do
   fi
 done
 
-if test x$ac_default_compressed_debug_sections == xyes ; then
+if test x$ac_default_compressed_debug_sections = xyes ; then
 
 $as_echo "#define DEFAULT_FLAG_COMPRESS_DEBUG 1" >>confdefs.h
 
diff --git a/ld/configure.ac b/ld/configure.ac
index a660b12..6542506 100644
--- a/ld/configure.ac
+++ b/ld/configure.ac
@@ -372,7 +372,7 @@ do
   fi
 done
 
-if test x$ac_default_compressed_debug_sections == xyes ; then
+if test x$ac_default_compressed_debug_sections = xyes ; then
   AC_DEFINE(DEFAULT_FLAG_COMPRESS_DEBUG, 1, [Define if you want compressed debug sections by default.])
 fi


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]