diff options
author | Mike Stump <mikestump@comcast.net> | 2015-11-12 19:18:54 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2015-11-12 19:18:54 +0000 |
commit | 633ce9715781eb43a5e0af1858cfa861c3a86113 (patch) | |
tree | aa56614d878f9f09e7641ae662bf2e05be3e3fd1 | |
parent | bc77eb4b51c60080abee30c7985a3ec9e1eb1331 (diff) | |
download | gcc-633ce9715781eb43a5e0af1858cfa861c3a86113.zip gcc-633ce9715781eb43a5e0af1858cfa861c3a86113.tar.gz gcc-633ce9715781eb43a5e0af1858cfa861c3a86113.tar.bz2 |
* Makefile.in (etags tags TAGS): Use && instead of ;.
From-SVN: r230270
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index ca9b61a..de47a87 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. |