From: brian Date: Fri, 9 Dec 2005 19:34:45 +0000 (+0000) Subject: Add ".#*" to the list of files removed from the make dist target dir. X-Git-Tag: v1_7_100~557 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=a2f68bc17cf30fc91ad5da36be41b235c9b51409 Add ".#*" to the list of files removed from the make dist target dir. Optimize the multiple find ... | xargs into a single find. --- 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