Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fall back to autogen259 if autogen isn't available
- Loading branch information
Showing
with
6 additions
and
2 deletions.
-
+3
−1
autogen.sh
-
+3
−1
test/autogen.sh
|
@@ -5,7 +5,9 @@ echo "This may take a while ..." |
|
|
|
|
|
# Regenerate configuration files |
|
|
cp acinclude.m4 aclocal.m4 |
|
|
autoconf |
|
|
for autoconf in autoconf autoconf259 |
|
|
do if which $autoconf >/dev/null; then $autoconf; break; fi |
|
|
done |
|
|
(cd test; sh autogen.sh) |
|
|
|
|
|
# Run configure for this platform |
|
|
|
@@ -2,4 +2,6 @@ |
|
|
# |
|
|
# Regenerate configuration files |
|
|
cp acinclude.m4 aclocal.m4 |
|
|
autoconf |
|
|
for autoconf in autoconf autoconf259 |
|
|
do if which $autoconf >/dev/null; then $autoconf; break; fi |
|
|
done |