]> git.proxmox.com Git - rustc.git/blob - configure
Update upstream source from tag 'upstream/1.22.1+dfsg1'
[rustc.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 "$@"