File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ RUN set -eux; \
1414 coreutils \
1515 g++ \
1616 gcc \
17+ libtool \
1718 make \
1819 cmake \
1920 build-base \
Original file line number Diff line number Diff 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)
6876RUN source scl_source enable devtoolset-7; set -eux; \
6977 /root/download-src.sh libxml2 http://xmlsoft.org/sources/libxml2-2.9.10.tar.gz; \
You can’t perform that action at this time.
0 commit comments