From 6192a49bfba17eb765a9cd77be1292c5bceb3084 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 1 Jun 2009 17:23:28 +0000 Subject: Tweak find to prune a .git dir. This allows a .git/cvs dir to exist with a cvs checkout in it. --- Util/mkdisttree.sh | 2 +- Util/preconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'Util') diff --git a/Util/mkdisttree.sh b/Util/mkdisttree.sh index 92ded2f18..17b936ed7 100755 --- a/Util/mkdisttree.sh +++ b/Util/mkdisttree.sh @@ -46,7 +46,7 @@ filelist=filelist$$ trap 'rm -f $filelist; rm -rf $disttree; exit 1' 1 2 15 ( cd $sdir_top - find . -name '?*.*' -prune -o -name .distfiles -print + find . -name .git -prune -o -name '?*.*' -prune -o -name .distfiles -print ) > $filelist ( while read dfn; do subdir=`echo $dfn | sed 's,/\.distfiles$,,'` diff --git a/Util/preconfig b/Util/preconfig index 2ad6ed2f3..aa4c93e71 100755 --- a/Util/preconfig +++ b/Util/preconfig @@ -1,6 +1,6 @@ #! /bin/sh -find . -name '?*.*' -prune -o -name .preconfig -print | ( +find . -name .git -prune -o -name '?*.*' -prune -o -name .preconfig -print | ( while read pre; do cmd=`echo $pre | sed 's,^,cd ,;s,/\([^/]*\)$, \&\& ./\1,'` echo >&2 "$cmd" -- cgit 1.4.1