diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2018-12-17 21:08:43 +0100 |
---|---|---|
committer | Iñigo Martínez <inigomartinez@gmail.com> | 2019-01-04 16:33:53 +0100 |
commit | 22e9f7721b891b17cd726f1bf92b15a35be34d22 (patch) | |
tree | f8a149bb5a4deb7279710bb0d954a826fba378ca /monitor/proxy | |
parent | 9523d8e09e0088c8cd58ace494d47cc3083151fc (diff) | |
download | gvfs-22e9f7721b891b17cd726f1bf92b15a35be34d22.tar.gz |
build: Fix the use of pkg-config file variables
The names of the variables in meson corresponding to the variables
obtained from the pkg-config files has been fixed by using a
pattern.
The pattern uses the dependency name as the prefix and the obtained
variable as the suffix.
Diffstat (limited to 'monitor/proxy')
-rw-r--r-- | monitor/proxy/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor/proxy/meson.build b/monitor/proxy/meson.build index 89119557..2d616812 100644 --- a/monitor/proxy/meson.build +++ b/monitor/proxy/meson.build @@ -22,7 +22,7 @@ deps = [ cflags = [ '-DG_LOG_DOMAIN="GVFS-RemoteVolumeMonitor"', - '-DGIO_MODULE_DIR="@0@"'.format(gio_module_dir), + '-DGIO_MODULE_DIR="@0@"'.format(gio_giomoduledir), '-DGVFS_LOCALEDIR="@0@"'.format(gvfs_localedir), '-DREMOTE_VOLUME_MONITORS_DIR="@0@"'.format(gvfs_remote_volume_monitors_dir), ] @@ -44,7 +44,7 @@ libgioremote_volume_monitor = shared_module( link_depends: symbol_map, install: true, install_rpath: gvfs_rpath, - install_dir: gio_module_dir, + install_dir: gio_giomoduledir, ) sources = files('gvfsproxyvolumemonitordaemon.c') |