argument list too long with cat; use xargs instead.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14064 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Joshua Sled
2006-05-14 22:56:07 +00:00
parent eaf1843061
commit 28a2bbac69

View File

@@ -17,7 +17,7 @@ etags.files: $(shell find . -mindepth 1 -type d ! -name CVS ! -path "*/.*")
# we don't need an etags.files dep here b/c you always call this after
# re-generating etags.files if needed from the top-level Makefile.am.
TAGS: $(shell cat etags.files)
etags `cat etags.files`
cat etags.files | xargs -n 200 etags --append
tags: $(shell cat etags.files)
ctags `cat etags.files`
cat etags.files | xargs -n 200 ctags --append