mirror of
https://github.com/servo/servo.git
synced 2025-06-17 21:04:28 +00:00
27 lines
418 B
Bash
Executable file
27 lines
418 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Spidermonkey requires autoconf 2.13 exactly
|
|
|
|
if [ ! -z `which autoconf213` ]
|
|
then
|
|
AUTOCONF213=autoconf213
|
|
fi
|
|
|
|
if [ ! -z `which autoconf2.13` ]
|
|
then
|
|
AUTOCONF213=autoconf2.13
|
|
fi
|
|
|
|
if [ ! -z `which autoconf-2.13` ]
|
|
then
|
|
AUTOCONF213=autoconf-2.13
|
|
fi
|
|
|
|
if [ -z "$AUTOCONF213" ]
|
|
then
|
|
echo "I need autoconf 2.13"
|
|
fi
|
|
|
|
(cd src/mozjs/js/src && $AUTOCONF213) || exit $?
|
|
|
|
cp -f configure.in configure
|