]> git.proxmox.com Git - rustc.git/blame - configure
Update upstream source from tag 'upstream/1.41.0+dfsg0+pve1'
[rustc.git] / configure
CommitLineData
223e47cc
LB
1#!/bin/sh
2
ea8adc8c 3script="$(dirname $0)"/src/bootstrap/configure.py
7453a54e 4
ea8adc8c
XL
5try() {
6 cmd=$1
223e47cc 7 shift
ea8adc8c
XL
8 T=$($cmd --version 2>/dev/null)
9 if [ $? -eq 0 ]; then
10 exec $cmd "$script" "$@"
c1a9b12d
SL
11 fi
12}
13
ea8adc8c
XL
14try python2.7 "$@"
15try python27 "$@"
16try python2 "$@"
17exec python $script "$@"