]> git.lizzy.rs Git - rust.git/blob - configure
Only hash the Hir owner (including its bodies)
[rust.git] / configure
1 #!/bin/sh
2
3 script="$(dirname $0)"/src/bootstrap/configure.py
4
5 try() {
6     cmd=$1
7     shift
8     T=$($cmd --version 2>/dev/null)
9     if [ $? -eq 0 ]; then
10         exec $cmd "$script" "$@"
11     fi
12 }
13
14 try python2.7 "$@"
15 try python27 "$@"
16 try python2 "$@"
17 exec python $script "$@"