aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Simon Josefsson <simon@josefsson.org>2022-07-04 02:35:53 +0200
committerGravatar GitHub <noreply@github.com>2022-07-04 01:35:53 +0100
commitbeb98b4d1a3b1b5fceed2ddf7f846c4e557b1ec4 (patch)
tree80a64e82b04ebe34079e1f2755084493013e3bf0
parent7407ad1d0660113a379f7c53a5237f1e6a6dd18d (diff)
libidn: fix build. (#7940)
-rw-r--r--projects/libidn/Dockerfile2
-rwxr-xr-xprojects/libidn/build.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/projects/libidn/Dockerfile b/projects/libidn/Dockerfile
index e6aebff2..9c3f699f 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 5aa0ea3a..c3cf49e1 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