Skip to content

Commit d56bc0e

Browse files
committed
And add libtool
1 parent 6e0c3c8 commit d56bc0e

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

dockerfiles/ci/alpine_compile_extension/base.Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ RUN set -eux; \
1414
coreutils \
1515
g++ \
1616
gcc \
17+
libtool \
1718
make \
1819
cmake \
1920
build-base \

dockerfiles/ci/centos/7/base.Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ RUN set -eux; \
6464
../configure && make -j $(nproc) && make install; \
6565
cd - && rm -fr build
6666

67+
# Libtool required
68+
RUN set -eux; \
69+
/root/download-src.sh libtool https://mirrors.kernel.org/gnu/libtool/libtool-2.5.4.tar.gz; \
70+
cd "${SRC_DIR}/libtool"; \
71+
mkdir -v 'build' && cd 'build'; \
72+
../configure && make -j $(nproc) && make install; \
73+
cd - && rm -fr build
74+
6775
# Required: libxml >= 2.9.0 (default version is 2.7.6)
6876
RUN source scl_source enable devtoolset-7; set -eux; \
6977
/root/download-src.sh libxml2 http://xmlsoft.org/sources/libxml2-2.9.10.tar.gz; \

0 commit comments

Comments
 (0)