libiberty TAGS

2015-11-12 Thread Mike Stump
I applied this one as obvious. * Makefile.in (etags tags TAGS): Use && instead of ;. Index: Makefile.in === --- Makefile.in (revision 230269) +++ Makefile.in (working copy) @@ -409,7 +409,7 @@ stamp-noasandir: .PHONY: all

libiberty TAGS

2015-06-18 Thread Mike Stump
I was making tags in libiberty and noticed it just didn’t work. :-( This is one easy way to fix it. Ok? diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index f06cc69..876fab2 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -409,8 +409,9 @@ stamp-noasandir: etags

Re: libiberty TAGS

2015-06-18 Thread Andreas Schwab
Mike Stump mikest...@comcast.net writes: + cd $(srcdir) etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done` This doesn't work with a relative $(srcdir). Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5

Re: libiberty TAGS

2015-06-18 Thread Mike Stump
On Jun 18, 2015, at 1:35 PM, Andreas Schwab sch...@linux-m68k.org wrote: Mike Stump mikest...@comcast.net writes: + cd $(srcdir) etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done` This doesn't work with a relative $(srcdir). Sure it does. I had tested with: srcdir =