File tree 2 files changed +4
-9
lines changed
2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -65,12 +65,7 @@ yum -y install ${MANYLINUX1_DEPS}
65
65
yum -y clean all > /dev/null 2>&1
66
66
yum list installed
67
67
68
- for PYVER in $PY_VERS ; do
69
- soabi_flags_list=" m"
70
- if [ $( lex_pyver $PYVER ) -lt $( lex_pyver 3.3) ]; then
71
- soabi_flags_list=" mu m"
72
- fi
73
- for soabi_flags in $soabi_flags_list ; do
74
- /opt/${PYVER}${soabi_flags} /bin/python $MY_DIR /manylinux1-check.py
75
- done
68
+ # Checks the same interpreters repeatedly, but is more thorough
69
+ for PYTHON in /opt/* /bin/python; do
70
+ $PYTHON $MY_DIR /manylinux1-check.py
76
71
done
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ function do_python_build {
37
37
fi
38
38
fi
39
39
# -Wformat added for https://bugs.python.org/issue17547 on Python 2.6
40
- CFLAGS=" -Wformat" LDFLAGS= " -Wl,-rpath /opt/ ${py_ver}${soabi_flags} /lib " ./configure --prefix=/opt/${py_ver}${soabi_flags} --disable-shared $unicode_flags > /dev/null
40
+ CFLAGS=" -Wformat" ./configure --prefix=/opt/${py_ver}${soabi_flags} --disable-shared $unicode_flags > /dev/null
41
41
make -j2 > /dev/null
42
42
make install > /dev/null
43
43
}
You can’t perform that action at this time.
0 commit comments