From: Sandro Santilli Date: Thu, 8 Mar 2012 10:36:27 +0000 (+0000) Subject: Remove .svnignore files (#1665) X-Git-Tag: 2.0.0beta3~67 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a9850e2d12fb8128bc67b3e5c3fa522f4e1ef75;p=postgis Remove .svnignore files (#1665) git-svn-id: http://svn.osgeo.org/postgis/trunk@9430 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/make_dist.sh b/make_dist.sh index ea920846c..c78bc7e20 100755 --- a/make_dist.sh +++ b/make_dist.sh @@ -38,11 +38,9 @@ if [ $? -gt 0 ]; then exit 1 fi -# remove .cvsignore, make_dist.sh and HOWTO_RELEASE -echo "Removing .cvsignore and make_dist.sh files" -find "$outdir" -name .cvsignore -exec rm {} \; -find "$outdir" -name .gitignore -exec rm {} \; -rm -f "$outdir"/make_dist.sh "$outdir"/HOWTO_RELEASE +echo "Removing ignore files, make_dist.sh and HOWTO_RELEASE" +find "$outdir" -name .\*ignore -exec rm -v {} \; +rm -fv "$outdir"/make_dist.sh "$outdir"/HOWTO_RELEASE # generating configure script and configuring echo "Running autogen.sh; ./configure"