Skip to content

Commit

Permalink
Fix meson.build deprecations up to 0.56.0 (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcalixte authored Oct 2, 2023
1 parent 35c8df7 commit 53f5cdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('cinnamon-control-center', 'c',
version: '5.8.2',
meson_version: '>=0.49.0',
meson_version: '>=0.56.0',
)

i18n = import('i18n')
Expand Down Expand Up @@ -46,7 +46,7 @@ config.set('HAVE_X11_EXTENSIONS_XKB_H', cc.has_header('X11/extensions/XKB.h'))
# This is a hard-dependency for the region and user-accounts panels

isocodes = dependency('iso-codes')
config.set_quoted('ISO_CODES_PREFIX', isocodes.get_pkgconfig_variable('prefix'))
config.set_quoted('ISO_CODES_PREFIX', isocodes.get_variable(pkgconfig: 'prefix'))

###############################################################################
# Network Manager stuff
Expand Down

0 comments on commit 53f5cdf

Please sign in to comment.