From: Eli Schwartz Date: Mon, 14 Mar 2022 00:26:05 +0000 (-0400) Subject: meson: fix misspelled kwarg name X-Git-Tag: archive/raspbian/1%0.1.106-3+rpi1^2~15^2~2^2~26 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b05b2826365a7dbc6ca1bf0977b848055cd0cbb6;p=babl.git meson: fix misspelled kwarg name set10 doesn't have a `Description` kwarg, it does have a `description` kwarg though. This caused the conf variable to not have a description when it should have one, and newer versions of Meson with better argument validation error out with: meson.build:58:5: ERROR: configuration_data.set10 got unknown keyword arguments "Description" --- diff --git a/meson.build b/meson.build index 55054f4..8c93be9 100644 --- a/meson.build +++ b/meson.build @@ -55,7 +55,7 @@ lib_name = meson.project_name() + '-' + api_version stability_version_number = (major_version != 0 ? minor_version : micro_version) stable = (stability_version_number % 2 == 0) -conf.set10('BABL_UNSTABLE', not stable, Description: +conf.set10('BABL_UNSTABLE', not stable, description: 'Define to 1 if this is an unstable version of BABL.') conf.set ('BABL_MAJOR_VERSION', '@0@'.format(major_version))