build: Remove some unnecessary args

This commit is contained in:
Vladimir Vaskov 2025-01-17 17:57:37 +03:00
parent 3663272063
commit ef57081f00
No known key found for this signature in database
GPG Key ID: CECAF75A5D478132

View File

@ -16,7 +16,7 @@ gobject_dep = dependency('gobject-2.0', version: glib_ver_cmp)
gtk_dep = dependency('gtk+-3.0', version: '>=3.22')
libhandy_dep = dependency('libhandy-1', version: '>=1.1.90', fallback: ['libhandy', 'libhandy_dep'], default_options: ['introspection=disabled'])
libnm_dep = dependency('libnm', version: '>=1.14')
phosh_plugins_dep = dependency('phosh-plugins', required: true, method: 'pkg-config')
phosh_plugins_dep = dependency('phosh-plugins')
# Detect libphosh API version
# Due to the unstable API, the version changes frequently,
@ -28,7 +28,7 @@ if result.returncode() != 0
endif
libphosh_version = result.stdout().strip()
libphosh_dep = dependency('libphosh-' + libphosh_version, required: true, method: 'pkg-config')
libphosh_dep = dependency('libphosh-' + libphosh_version)
plugin_deps = [
gobject_dep,