On some systems, the bash command could be available in another directory than /bin. As such, to offer an env shebang is more convenient. This make sense even for docker scripts, as you can use Docker on FreeBSD or SmartOS for example.
30 lines
964 B
Bash
Executable file
30 lines
964 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
# file at the top-level directory of this distribution and at
|
|
# http://rust-lang.org/COPYRIGHT.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
# option. This file may not be copied, modified, or distributed
|
|
# except according to those terms.
|
|
|
|
set -ex
|
|
source shared.sh
|
|
|
|
curl https://www.python.org/ftp/python/2.7.12/Python-2.7.12.tgz | \
|
|
tar xzf -
|
|
|
|
mkdir python-build
|
|
cd python-build
|
|
|
|
# Gotta do some hackery to tell python about our custom OpenSSL build, but other
|
|
# than that fairly normal.
|
|
CFLAGS='-I /rustroot/include' LDFLAGS='-L /rustroot/lib -L /rustroot/lib64' \
|
|
hide_output ../Python-2.7.12/configure --prefix=/rustroot
|
|
hide_output make -j10
|
|
hide_output make install
|
|
|
|
cd ..
|
|
rm -rf python-build
|
|
rm -rf Python-2.7.12
|