From c1d5012e9166afeab5563d72ec244fa4d85e6837 Mon Sep 17 00:00:00 2001 From: Schrijvers Luc Date: Mon, 26 Dec 2022 17:46:26 +0100 Subject: [PATCH] libunistring, disable static library (#7666) --- dev-libs/libunistring/libunistring-1.0.recipe | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-libs/libunistring/libunistring-1.0.recipe b/dev-libs/libunistring/libunistring-1.0.recipe index 4f5bbb0fa..be19fe6e2 100644 --- a/dev-libs/libunistring/libunistring-1.0.recipe +++ b/dev-libs/libunistring/libunistring-1.0.recipe @@ -5,7 +5,7 @@ HOMEPAGE="https://www.gnu.org/software/libunistring/" COPYRIGHT="1998-2018 Free Software Fundation, Inc." LICENSE="GNU GPL v2 GNU LGPL v3" -REVISION="1" +REVISION="2" SOURCE_URI="https://ftpmirror.gnu.org/libunistring/libunistring-$portVersion.tar.gz https://ftp.gnu.org/gnu/libunistring/libunistring-$portVersion.tar.gz" CHECKSUM_SHA256="3c0184c0e492d7c208ce31d25dd1d2c58f0c3ed6cbbe032c5b248cddad318544" @@ -53,9 +53,11 @@ BUILD() { autoreconf -fi if [ -n "$secondaryArchSuffix" ]; then - runConfigure ./configure + runConfigure ./configure --disable-static else - runConfigure --omit-dirs docDir ./configure --docdir="$developDocDir" + runConfigure --omit-dirs docDir ./configure \ + --disable-static \ + --docdir="$developDocDir" fi make $jobArgs }