aboutsummaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authormrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2015-11-12 19:18:54 +0000
committermrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4>2015-11-12 19:18:54 +0000
commit3b8a962f285e2ab842260d16c3180967fe54b873 (patch)
treeaa56614d878f9f09e7641ae662bf2e05be3e3fd1 /libiberty
parenta97954339ed2a8862b813cdda8f48529ba8dd43a (diff)
* 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
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/ChangeLog4
-rw-r--r--libiberty/Makefile.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index ca9b61a80af..de47a87d10d 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 9f7f70dae21..c7a45680917 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.