]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Partly as documentation, include a step to fetch up-to-date
authorTim Kientzle <kientzle@gmail.com>
Sat, 27 Aug 2011 22:31:45 +0000 (18:31 -0400)
committerTim Kientzle <kientzle@gmail.com>
Sat, 27 Aug 2011 22:31:45 +0000 (18:31 -0400)
config.guess and config.sub as part of release building.

SVN-Revision: 3657

build/makerelease.sh

index 309e31fc3001024dc87ed98cc101bb9e638e1fa5..bec3a9c95defccd78bf9579052dcac1d518af1b2 100755 (executable)
@@ -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