Require autoconf 2.13

This commit is contained in:
Brian Anderson 2012-05-10 16:03:27 -07:00
parent 8244b89be7
commit d3f2613308

View file

@ -1,5 +1,17 @@
#!/bin/bash
(cd src/mozjs/js/src && autoconf)
# Spidermonkey requires autoconf 2.13 exactly
if [ ! -z `which autoconf213` ]
then
AUTOCONF=autoconf213
fi
if [ ! -z `which autoconf2.13` ]
then
AUTOCONF=autoconf2.13
fi
(cd src/mozjs/js/src && $AUTOCONF)
cp -f configure.in configure