From 77005af64c4a0166929192f6b7c461ae54f374ff Mon Sep 17 00:00:00 2001 From: "Tobias C. Berner" Date: Fri, 19 May 2023 08:11:44 +0200 Subject: [PATCH] graphics/gdk-pixbuf2: fix option variables The Makefile was using FOO_MESON_ENABLE= bar instead of FOO_MESON_ENABLED= bar so those values were never passed to meson in the first place. PR: 271472 --- graphics/gdk-pixbuf2/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/graphics/gdk-pixbuf2/Makefile b/graphics/gdk-pixbuf2/Makefile index b94a26faf04aa..8a4b3736a3d7c 100644 --- a/graphics/gdk-pixbuf2/Makefile +++ b/graphics/gdk-pixbuf2/Makefile @@ -30,7 +30,7 @@ OPTIONS_DEFINE= JPEG MANPAGES PNG TIFF OPTIONS_DEFAULT=JPEG MANPAGES PNG TIFF JPEG_USES= jpeg -JPEG_MESON_ENABLE= jpeg +JPEG_MESON_ENABLED= jpeg MANPAGES_BUILD_DEPENDS= docbook-xsl>0:textproc/docbook-xsl \ rst2man:textproc/py-docutils @@ -38,9 +38,9 @@ MANPAGES_USE= gnome=libxslt:build MANPAGES_MESON_TRUE= man PNG_LIB_DEPENDS= libpng.so:graphics/png -PNG_MESON_ENABLE= png +PNG_MESON_ENABLED= png TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff -TIFF_MESON_ENABLE= tiff +TIFF_MESON_ENABLED= tiff .include