From 576bc55a73d3a59c391f1392789997e42f1a7c94 Mon Sep 17 00:00:00 2001 From: Joshua Sled Date: Sun, 28 May 2006 14:34:50 +0000 Subject: [PATCH] only conditionally remove the file. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14214 57a11ea4-9604-0410-9ed3-97b8803252fd --- Makefile.TAGS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.TAGS b/Makefile.TAGS index 736238848a0..9d9318f9b4b 100644 --- a/Makefile.TAGS +++ b/Makefile.TAGS @@ -17,9 +17,9 @@ 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) - rm TAGS + if [ -f TAGS ]; then rm TAGS; fi cat etags.files | xargs -n 200 etags --append tags: $(shell cat etags.files) - rm tags + if [ -f TAGS ]; then rm tags; fi cat etags.files | xargs -n 200 ctags --append