/usr/src/rustc-1.24.1/configure is in rust-src 1.24.1+dfsg1+llvm-0ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/sh
script="$(dirname $0)"/src/bootstrap/configure.py
try() {
cmd=$1
shift
T=$($cmd --version 2>/dev/null)
if [ $? -eq 0 ]; then
exec $cmd "$script" "$@"
fi
}
try python2.7 "$@"
try python27 "$@"
try python2 "$@"
exec python $script "$@"
|