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/binutils-2_26-branch] Replace == with = in ld/configure.ac


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

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

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

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

diff --git a/ld/ChangeLog b/ld/ChangeLog
index 618ff56..8479e51 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,12 @@
+2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
+
+	Backport from master
+	2016-01-29  H.J. Lu  <hongjiu.lu@intel.com>
+
+	PR ld/19533
+	* configure.ac (compressed_debug_sections): Replace == with =.
+	* configure: Regenerated.
+
 2016-01-25  Tristan Gingold  <gingold@adacore.com>
 
 	* configure: Regenerate.
diff --git a/ld/configure b/ld/configure
index b51d43a..8095b71 100755
--- a/ld/configure
+++ b/ld/configure
@@ -17134,7 +17134,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 188172d..e28f38e 100644
--- a/ld/configure.ac
+++ b/ld/configure.ac
@@ -384,7 +384,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]