File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ cleanup=""
6
6
7
7
version=3.4
8
8
pfile=mpich-${version} .tar.gz
9
- src=$( eval " @TOP_DIR@/tools/fetch_check.sh" http ://www.mpich.org/static/downloads/${version} /${pfile} ${pfile} )
9
+ src=$( eval " @TOP_DIR@/tools/fetch_check.sh" https ://www.mpich.org/static/downloads/${version} /${pfile} ${pfile} )
10
10
11
11
if [ " x${src} " = " x" ]; then
12
12
echo " Failed to fetch ${pkg} " >&2
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ pkg="zlib"
4
4
pkgopts=$@
5
5
cleanup=" "
6
6
7
- version=1.2.11
7
+ version=1.2.12
8
8
pfile=zlib-${version} .tar.gz
9
- src=$( eval " @TOP_DIR@/tools/fetch_check.sh" http ://zlib.net/${pfile} ${pfile} )
9
+ src=$( eval " @TOP_DIR@/tools/fetch_check.sh" https ://zlib.net/${pfile} ${pfile} )
10
10
11
11
if [ " x${src} " = " x" ]; then
12
12
echo " Failed to fetch ${pkg} " >&2
@@ -26,7 +26,7 @@ rm -rf zlib-${version}
26
26
tar xzf ${src} \
27
27
&& cd zlib-${version} \
28
28
&& cleanup=" ${cleanup} $( pwd) " \
29
- && CC=" @BUILD_CC@" ./configure \
29
+ && CC=" @BUILD_CC@" CFLAGS= " -O3 -fPIC " ./configure \
30
30
--shared --prefix=" @AUX_PREFIX@" > ${log} 2>&1 \
31
31
&& make -j @MAKEJ@ >> ${log} 2>&1 \
32
32
&& make install >> ${log} 2>&1
Original file line number Diff line number Diff line change @@ -34,7 +34,11 @@ _is_sourced() {
34
34
# Loads various settings that are used elsewhere in the script
35
35
# This should be called before any other functions
36
36
docker_setup_env () {
37
- source cmbenv
37
+ # Our docker builds install to /usr/local, so this is
38
+ # not needed. In fact, it can cause problems since the
39
+ # setup script will manipulate LD_LIBRARY_PATH.
40
+ # source cmbenv
41
+ echo " " > /dev/null
38
42
}
39
43
40
44
_main () {
You can’t perform that action at this time.
0 commit comments