Author: dylan
Date: 2004-12-17 18:08:09 -0500 (Fri, 17 Dec 2004)
New Revision: 430
Modified:
trunk/clients/wxhaver/bootstrap
Log:
old bootstrap was not reliable enough. This one
is better. Note: You MUST HAVE autoconf2.50 and automake-1.9.
Older versions are not supported.
Modified: trunk/clients/wxhaver/bootstrap
===================================================================
--- trunk/clients/wxhaver/bootstrap 2004-12-17 09:16:13 UTC (rev 429)
+++ trunk/clients/wxhaver/bootstrap 2004-12-17 23:08:09 UTC (rev 430)
@@ -1,35 +1,9 @@
#!/bin/sh
-export WANT_AUTOMAKE=1.7
-export WANT_AUTOCONF=2.5
-echo "Checking version of autotools"
-
-(for file in autoconf automake aclocal autoheader; do
- $file --version | head -n -1 | sed 's/(.\+)//'
-done) | awk '
- /autoconf|autoheader/ {
- if ($2 != "2.59") {
- print "Wrong version of autoconf:", $2;
- exit(1);
- }
- }
- /automake|aclocal/ {
- if ($2 != "1.7.9") {
- print "Wrong version of automake:", $2;
- exit(1);
- }
- }
-'
-
-if (( $? != 0 )); then
- exit $?
-fi
-
-
set -x
mkdir -p config/
-aclocal && \
-autoconf && \
-autoheader && \
-automake -a
+aclocal-1.9 && \
+autoconf2.50 && \
+autoheader2.50 && \
+automake-1.9 -a