Skip to content

Commit

Permalink
Fix meson.build deprecations up to 0.56.0 (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcalixte authored Oct 2, 2023
1 parent 334ff4d commit 8c66255
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/dbus/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if docbook_enabled
spec_xml_files += custom_target(prefix +'.ref.xml',
input : [
'spec-to-docbook.xsl',
join_paths(meson.source_root(), 'cinnamon-session', prefix + '.xml'),
join_paths(meson.project_source_root(), 'cinnamon-session', prefix + '.xml'),
],
output: prefix + '.ref.xml',
command: [
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
project('cinnamon-session',
[ 'c', ],
version: '5.8.1',
meson_version: '>=0.37.0',
meson_version: '>=0.56.0',
)

################################################################################
Expand Down Expand Up @@ -162,7 +162,7 @@ message('\n'.join([
' sysconfdir: @0@'.format(get_option('sysconfdir')),
' localstatedir: @0@'.format(get_option('localstatedir')),
' datadir: @0@'.format(get_option('datadir')),
' source code location: @0@'.format(meson.source_root()),
' source code location: @0@'.format(meson.project_source_root()),
' compiler: @0@'.format(cc.get_id()),
' cflags: @0@'.format(project_cflags),
#' Maintainer mode: @0@'.format(USE_MAINTAINER_MODE),
Expand Down

0 comments on commit 8c66255

Please sign in to comment.