Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fall back to autogen259 if autogen isn't available
  • Loading branch information
slouken committed Mar 21, 2006
1 parent 4b93414 commit 1e9efa4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion autogen.sh
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion test/autogen.sh
Expand Up @@ -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

0 comments on commit 1e9efa4

Please sign in to comment.