From fb812964e00c9d9a48e68b760a9854fd6bf03c8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 25 Aug 2021 21:59:02 +0200 Subject: [PATCH] Bad repo URL & make command for uPDFParser library --- scripts/setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/setup.sh b/scripts/setup.sh index 209ccea..865fe1e 100755 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -15,8 +15,8 @@ fi # uPDFParser if [ ! -d lib/updfparser ] ; then - git clone http://indefero.soutade.fr/p/updfparser lib/updfparser + git clone git://soutade.fr/updfparser.git lib/updfparser pushd lib/updfparser - make STATIC=1 SHARED=0 + make BUILD_STATIC=1 BUILD_SHARED=0 popd fi