From beb98b4d1a3b1b5fceed2ddf7f846c4e557b1ec4 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Mon, 4 Jul 2022 02:35:53 +0200 Subject: [PATCH] libidn: fix build. (#7940) --- projects/libidn/Dockerfile | 2 +- projects/libidn/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/libidn/Dockerfile b/projects/libidn/Dockerfile index e6aebff2b..9c3f699f0 100644 --- a/projects/libidn/Dockerfile +++ b/projects/libidn/Dockerfile @@ -24,7 +24,7 @@ RUN apt-get update && apt-get install -y \ libtool \ gettext gengetopt curl gperf wget -RUN git clone --depth=1 https://git.savannah.gnu.org/git/libidn.git +RUN git clone https://git.savannah.gnu.org/git/libidn.git WORKDIR libidn COPY build.sh $SRC/ diff --git a/projects/libidn/build.sh b/projects/libidn/build.sh index 5aa0ea3a8..c3cf49e1b 100755 --- a/projects/libidn/build.sh +++ b/projects/libidn/build.sh @@ -18,7 +18,7 @@ # avoid iconv() memleak on Ubuntu 16.04 image (breaks test suite) export ASAN_OPTIONS=detect_leaks=0 -./bootstrap +./bootstrap --skip-po ./configure --enable-static --disable-doc make -j make -j check