This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB 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] Fix typo in Makefile


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

commit 50cc587fe49621a87283f06655fe922d45095076
Author: Simon Marchi <simon.marchi@ericsson.com>
Date:   Fri Nov 25 09:58:02 2016 -0500

    Fix typo in Makefile
    
    Fix a typo I made in my previous Makefile cleanup series.
    
    Thanks to Patrick Monnerat for reporting.
    
    gdb/ChangeLog:
    
    	* Makefile.in: Fix typo.

Diff:
---
 gdb/ChangeLog   | 4 ++++
 gdb/Makefile.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 2c4f166..d60fc24 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
 2016-11-25  Simon Marchi  <simon.marchi@ericsson.com>
 
+	* Makefile.in: Fix typo.
+
+2016-11-25  Simon Marchi  <simon.marchi@ericsson.com>
+
 	* record-full.c (record_full_resume): Fix typos in comment.
 
 2016-11-25  Simon Marchi  <simon.marchi@ericsson.com>
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 44a743e..415cca3 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -555,7 +555,7 @@ WIN32LDAPP = @WIN32LDAPP@
 
 LIBGUI = @LIBGUI@
 GUI_CFLAGS_X = @GUI_CFLAGS_X@
-IDE_CFLAGSv = $(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
+IDE_CFLAGS = $(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
 
 ALL_TCL_CFLAGS = $(TCL_CFLAGS) $(TK_CFLAGS)


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