Skip to content

Commit 1d745bf

Browse files
committed
Merge pull request #32 from rmcgibbo/disable-shared
--disable-shared builds in the docker images
2 parents 72b5b63 + c4d2b8b commit 1d745bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/build_scripts/build_utils.sh

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function do_python_build {
3131
local unicode_flags="--enable-unicode=ucs4"
3232
fi
3333
# -Wformat added for https://bugs.python.org/issue17547 on Python 2.6
34-
CFLAGS="-Wformat" LDFLAGS="-Wl,-rpath /opt/$py_ver/lib" ./configure --prefix=/opt/$py_ver --enable-shared $unicode_flags > /dev/null
34+
CFLAGS="-Wformat" LDFLAGS="-Wl,-rpath /opt/$py_ver/lib" ./configure --prefix=/opt/$py_ver --disable-shared $unicode_flags > /dev/null
3535
make -j2 > /dev/null
3636
make install > /dev/null
3737
}

0 commit comments

Comments
 (0)