Permalink
File 8 of 347 in
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Added Apoorv Upreti's GSoC2013 work: visual test suite.
See visualtest/README.txt for details.
- Loading branch information
File 8 of 347 in
5206975
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
# | ||
# Regenerate configuration files | ||
cp acinclude.m4 aclocal.m4 | ||
found=false | ||
for autoconf in autoconf autoconf259 autoconf-2.59 | ||
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi | ||
done | ||
if test x$found = xfalse; then | ||
echo "Couldn't find autoconf, aborting" | ||
exit 1 | ||
fi |
Oops, something went wrong.