[Gnucash-changes] r14064 - gnucash/trunk - argument list too long with cat; use xargs instead.

Joshua Sled jsled at cvs.gnucash.org
Sun May 14 18:56:08 EDT 2006


Author: jsled
Date: 2006-05-14 18:56:07 -0400 (Sun, 14 May 2006)
New Revision: 14064
Trac: http://svn.gnucash.org/trac/changeset/14064

Modified:
   gnucash/trunk/Makefile.TAGS
Log:
argument list too long with cat; use xargs instead.

Modified: gnucash/trunk/Makefile.TAGS
===================================================================
--- gnucash/trunk/Makefile.TAGS	2006-05-14 22:39:37 UTC (rev 14063)
+++ gnucash/trunk/Makefile.TAGS	2006-05-14 22:56:07 UTC (rev 14064)
@@ -17,7 +17,7 @@
 # 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



More information about the gnucash-changes mailing list