From: Sandro Santilli Date: Wed, 30 Mar 2005 17:25:41 +0000 (+0000) Subject: Updated to replace 'RC' into '-rc' when building package dir (and tar). X-Git-Tag: pgis_1_0_0~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ad94edf51f5b117e3419be120dfb56c6328fc94;p=postgis Updated to replace 'RC' into '-rc' when building package dir (and tar). Removed autom4te.cache directory after call to autoconf. git-svn-id: http://svn.osgeo.org/postgis/trunk@1588 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/make_dist.sh b/make_dist.sh index af41cb96c..285286a1f 100644 --- a/make_dist.sh +++ b/make_dist.sh @@ -12,6 +12,7 @@ fi tag="pgis_"$major"_"$minor"_"$micro version="$major.$minor.$micro" +version=`echo $version | sed 's/RC/-rc/'` package="postgis-$version.tgz" outdir="postgis-$version" @@ -40,6 +41,8 @@ echo "Running autoconf" owd="$PWD" cd "$outdir" autoconf +# remove the autom4te.cache dir, created by autoconf +rm -Rf autom4te.cache cd "$owd" # generating documentation