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] libiberty TAGS


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

commit f3363926de602b7590526740a01a64ca973ca78a
Author: Mike Stump <mikestump@comcast.net>
Date:   Sat Nov 28 16:39:31 2015 +0000

    libiberty TAGS
    
     	* Makefile.in (etags tags TAGS): Use && instead of ;.
    
    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230270 138bc75d-0d04-0410-961f-82ee72b054a4

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

diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 3e3dab6..5d672a8 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,7 @@
+2015-11-12  Mike Stump  <mikestump@comcast.net>
+
+	* Makefile.in (etags tags TAGS): Use && instead of ;.
+
 2015-11-09  Alan Modra  <amodra@gmail.com>
 
 	* configure.ac: Check size of size_t.
diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in
index 9f7f70d..c7a4568 100644
--- a/libiberty/Makefile.in
+++ b/libiberty/Makefile.in
@@ -409,7 +409,7 @@ stamp-noasandir:
 .PHONY: all etags tags TAGS ls clean stage1 stage2
 
 etags tags TAGS: etags-subdir
-	cd $(srcdir); etags $(CFILES)
+	cd $(srcdir) && etags $(CFILES)
 
 # The standalone demangler (c++filt) has been moved to binutils.
 # But make this target work anyway for demangler hacking.


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