1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:57:45 +00:00

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`.
This commit is contained in:
Tim Ledbetter 2023-08-19 19:08:35 +01:00 committed by Tim Schumacher
parent da9c389ce3
commit 33b133d3f4

View file

@ -6,6 +6,7 @@ workdir="util-linux-${version}"
useconfigure='true' useconfigure='true'
configopts=( configopts=(
'--disable-all-programs' '--disable-all-programs'
'--disable-nls'
'--enable-libuuid' '--enable-libuuid'
'--prefix=/usr/local' '--prefix=/usr/local'
) )