rust/configure

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
296 B
Plaintext
Raw Normal View History

#!/bin/sh
2011-03-16 11:17:32 -05:00
script="$(dirname "$0")"/src/bootstrap/configure.py
2016-01-21 10:30:22 -06:00
try() {
cmd=$1
shift
T=$($cmd --version 2>/dev/null)
if [ $? -eq 0 ]; then
exec $cmd "$script" "$@"
fi
}
2019-11-21 06:57:40 -06:00
try python3 "$@"
try python2.7 "$@"
try python27 "$@"
try python2 "$@"
exec python "$script" "$@"