From a2f68bc17cf30fc91ad5da36be41b235c9b51409 Mon Sep 17 00:00:00 2001 From: brian Date: Fri, 9 Dec 2005 19:34:45 +0000 Subject: [PATCH] Add ".#*" to the list of files removed from the make dist target dir. Optimize the multiple find ... | xargs into a single find. --- build/autoMakefile.am.toplevel | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/autoMakefile.am.toplevel b/build/autoMakefile.am.toplevel index 096edf5..3413efc 100644 --- a/build/autoMakefile.am.toplevel +++ b/build/autoMakefile.am.toplevel @@ -58,8 +58,9 @@ endif # LINUX endif # MODULES dist-hook: - find $(distdir) -name .deps | xargs rm -rf - find $(distdir) -name CVS | xargs rm -rf + find $(distdir) -name .deps -o \ + -name CVS -o \ + -name .#* | xargs rm -rf build/lustre.spec: build/lustre.spec.in config.status ./config.status build/lustre.spec -- 1.8.3.1