libiberty TAGS
authorMike Stump <mikestump@comcast.net>
Sat, 28 Nov 2015 16:39:31 +0000 (16:39 +0000)
committerPedro Alves <palves@redhat.com>
Sat, 28 Nov 2015 16:39:31 +0000 (16:39 +0000)
  * 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

libiberty/ChangeLog
libiberty/Makefile.in

index 3e3dab6328546e2140c5a5bd77c621dc63bf9e67..5d672a8fdd10276204a1c6924be9673f92fb5b43 100644 (file)
@@ -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.
index 9f7f70dae212d96a35a4013a13af9eb09b518062..c7a45680917a53367c2e1f459cdc921c4d7148ab 100644 (file)
@@ -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.
This page took 0.029096 seconds and 4 git commands to generate.