Skip to content

Commit

Permalink
Merge branch 'master' into release-3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tintou authored Sep 13, 2023
2 parents 8e79c11 + 04aec62 commit 24f1f17
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ install_data(
i18n.merge_file(
input: 'wingpanel.desktop.in',
output: meson.project_name() + '.desktop',
po_dir: join_paths(meson.source_root(), 'po', 'extra'),
po_dir: join_paths(meson.project_source_root(), 'po', 'extra'),
type: 'desktop',
install: true,
install_dir: join_paths(get_option('datadir'), 'applications')
Expand All @@ -22,7 +22,7 @@ i18n.merge_file(
i18n.merge_file(
input: 'wingpanel.appdata.xml.in',
output: meson.project_name() + '.appdata.xml',
po_dir: join_paths(meson.source_root(), 'po', 'extra'),
po_dir: join_paths(meson.project_source_root(), 'po', 'extra'),
type: 'xml',
install: true,
install_dir: join_paths(get_option('datadir'), 'metainfo'),
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ project(
'io.elementary.wingpanel',
'c', 'vala',
version: '3.0.5',
meson_version : '>= 0.57'
meson_version : '>= 0.58.0'
)

add_project_arguments([
'--vapidir=' + join_paths(meson.source_root(), 'vapi'),
'--vapidir=' + join_paths(meson.project_source_root(), 'vapi'),
],
language: 'vala',
)
Expand Down
2 changes: 1 addition & 1 deletion po/extra/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
i18n.gettext('extra',
args: '--directory=' + meson.source_root(),
args: '--directory=' + meson.project_source_root(),
preset: 'glib',
install: false
)
2 changes: 1 addition & 1 deletion po/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
i18n.gettext(meson.project_name(),
args: ['--directory='+meson.source_root()],
args: ['--directory='+meson.project_source_root()],
preset: 'glib',
)

Expand Down
2 changes: 1 addition & 1 deletion wingpanel-interface/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if mutter_dep.length() == 0
error ('No supported mutter library found!')
endif

mutter_typelib_dir = libmutter_dep.get_pkgconfig_variable('typelibdir')
mutter_typelib_dir = libmutter_dep.get_variable('typelibdir')

gala_dep = dependency('gala')
m_dep = meson.get_compiler('c').find_library('m', required: false)
Expand Down

0 comments on commit 24f1f17

Please sign in to comment.