diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2021-11-03 08:37:09 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2021-11-03 09:00:12 +0000 |
commit | 9a19d0e657a86a0a29624732849f4a91af87392d (patch) | |
tree | ebe4a389c39bcd18b944d4a9085e8e0123eca17c | |
parent | 3168fd53e41110f005c06f89fc9f10b869b54fc4 (diff) | |
download | ports-9a19d0e657a86a0a29624732849f4a91af87392d.tar.gz ports-9a19d0e657a86a0a29624732849f4a91af87392d.zip |
x11-toolkits/girara: chase Meson option name after 7ab84affb07f
meson.build:1:0: ERROR: Unknown options: "enable-json, enable-notify"
https://git.pwmt.org/pwmt/girara/-/commit/281011a18772
PR: 259080
Reported by: antoine (via exp-run)
Regressed by: https://github.com/mesonbuild/meson/commit/dbf2ace6ca1c
-rw-r--r-- | x11-toolkits/girara/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-toolkits/girara/Makefile b/x11-toolkits/girara/Makefile index 3f0e3842531b..2dbf20345ee3 100644 --- a/x11-toolkits/girara/Makefile +++ b/x11-toolkits/girara/Makefile @@ -22,12 +22,12 @@ JSONC_DESC= Support json configuration dump OPTIONS_SUB= yes JSONC_LIB_DEPENDS= libjson-c.so:devel/json-c -JSONC_MESON_TRUE= enable-json +JSONC_MESON_ENABLED= json NLS_USES= gettext NOTIFY_LIB_DEPENDS= libnotify.so:devel/libnotify -NOTIFY_MESON_TRUE= enable-notify +NOTIFY_MESON_ENABLED= notify post-patch-NLS-off: .SILENT ${REINPLACE_CMD} -e "/subdir('po')/d" \ |