changeset 7924 | fcb86d323770 |
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/visualtest/autogen.sh Sun Nov 10 00:32:23 2013 -0500 1.3 @@ -0,0 +1,12 @@ 1.4 +#!/bin/sh 1.5 +# 1.6 +# Regenerate configuration files 1.7 +cp acinclude.m4 aclocal.m4 1.8 +found=false 1.9 +for autoconf in autoconf autoconf259 autoconf-2.59 1.10 +do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi 1.11 +done 1.12 +if test x$found = xfalse; then 1.13 + echo "Couldn't find autoconf, aborting" 1.14 + exit 1 1.15 +fi