diff options
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/Makefile.in | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 3025e99..3e3dab6 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -32,6 +32,10 @@ Android hosts. * configure: Regenerate. +2015-10-28 Jason Merrill <jason@redhat.com> + + * Makefile.in (TAGS): Fix for separate build directory. + 2015-10-18 Roland McGrath <roland@gnu.org> Iain Sandoe <iain@codesourcery.com> diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 7d7e2f4..9f7f70d 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -406,12 +406,10 @@ stamp-noasandir: else true; fi touch stamp-noasandir -.PHONY: all etags tags ls clean stage1 stage2 +.PHONY: all etags tags TAGS ls clean stage1 stage2 -etags tags: TAGS etags-subdir - -TAGS: $(CFILES) - etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done` +etags tags TAGS: etags-subdir + cd $(srcdir); etags $(CFILES) # The standalone demangler (c++filt) has been moved to binutils. # But make this target work anyway for demangler hacking. |