From: Tim Kientzle Date: Sat, 27 Aug 2011 22:31:45 +0000 (-0400) Subject: Partly as documentation, include a step to fetch up-to-date X-Git-Tag: v3.0.0a~95 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0700da72a3a4877853544aa91f2bad07ba0d0144;p=thirdparty%2Flibarchive.git Partly as documentation, include a step to fetch up-to-date config.guess and config.sub as part of release building. SVN-Revision: 3657 --- diff --git a/build/makerelease.sh b/build/makerelease.sh index 309e31fc3..bec3a9c95 100755 --- a/build/makerelease.sh +++ b/build/makerelease.sh @@ -37,6 +37,11 @@ rm -rf _cmtest # Construct and verify the autoconf build system # /bin/sh build/autogen.sh + +# Get the newest config.guess/config.sub from savannah.gnu.org +curl 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD' > build/autoconf/config.guess +curl 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' > build/autoconf/config.sub + ./configure make distcheck -make dist-zip \ No newline at end of file +make dist-zip