Fix WPT when /usr/bin/python is python3

Use the Python that was detected during configure.
This commit is contained in:
Simon Sapin 2014-09-08 14:18:02 +02:00
parent f701a9b827
commit f67f6ef062

View file

@ -9,7 +9,7 @@ objdir="$2"
shift 2
cd $objdir/..
test -d _virtualenv || virtualenv _virtualenv
test -d _virtualenv || virtualenv _virtualenv -p $(which $PYTHON)
test -d $servo_root/src/test/wpt/metadata || mkdir -p $servo_root/src/test/wpt/metadata
test -d $servo_root/src/test/wpt/prefs || mkdir -p $servo_root/src/test/wpt/prefs
source _virtualenv/bin/activate