summaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorJonathan Kang <jonathankang@gnome.org>2020-03-11 09:34:13 +0800
committerJonathan Kang <jonathankang@gnome.org>2020-03-11 09:34:13 +0800
commitcabdb8908ec1996e000849307c5143f75aee6f7b (patch)
tree697a5916270317c4e831fb22aa97636484cd8830 /backends
parent6160b72064b0b7c22b3168d37d68ae7b106d4d2c (diff)
zypp: Fix broken meson.build
Use correct function call and add missing comma.
Diffstat (limited to 'backends')
-rw-r--r--backends/zypp/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/zypp/meson.build b/backends/zypp/meson.build
index cc1c313a5..a773ca1d0 100644
--- a/backends/zypp/meson.build
+++ b/backends/zypp/meson.build
@@ -4,7 +4,7 @@ zypp_dep = dependency('libzypp', version: '>=6.16.0')
# define if libzypp returns package size in bytes
zypp_args = []
-if zypp_dep.version().compare_version('>=11.4.0')
+if zypp_dep.version().version_compare('>=11.4.0')
zypp_args = ['-DZYPP_RETURN_BYTES=1']
endif
@@ -27,7 +27,7 @@ shared_module(
c_args: [
'-Wno-deprecated',
'-D_FILE_OFFSET_BITS=64',
- ]
+ ],
install: true,
install_dir: pk_plugin_dir,
)