From 33b133d3f415b18f5b2fdc7e4f2472b3d9d8dc84 Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Sat, 19 Aug 2023 19:08:35 +0100 Subject: [PATCH] Ports/libuuid: Disable natural language support Having this option enabled made `libuuid` link to `libintl` only when the `gettext` port was installed. This made the `taskwarrior` port fail to build when `gettext` was installed prior to `libuuid`. --- Ports/libuuid/package.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Ports/libuuid/package.sh b/Ports/libuuid/package.sh index 1b760fed02..1aa324cb96 100755 --- a/Ports/libuuid/package.sh +++ b/Ports/libuuid/package.sh @@ -6,6 +6,7 @@ workdir="util-linux-${version}" useconfigure='true' configopts=( '--disable-all-programs' + '--disable-nls' '--enable-libuuid' '--prefix=/usr/local' )