summaryrefslogtreecommitdiffstats
path: root/src/nss-mymachines
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2023-09-26 15:14:38 +0200
committerJan Janssen <medhefgo@web.de>2023-09-26 19:41:53 +0200
commit90461ef56fe75f3c68741665b103709ae36eaba6 (patch)
tree053e2dccb7fdf3edfb415021c2f52311de522d4f /src/nss-mymachines
parentsystemd-hwdb: fix unsigned and signed comparison problem (diff)
downloadsystemd-90461ef56fe75f3c68741665b103709ae36eaba6.tar.xz
systemd-90461ef56fe75f3c68741665b103709ae36eaba6.zip
meson: Fix version script handling
Build targets should have a link dependency on the version scripts they use. This also uses absolute paths in anticipation for meson 1.3 needlessly deprecating file to string conversions.
Diffstat (limited to 'src/nss-mymachines')
-rw-r--r--src/nss-mymachines/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nss-mymachines/meson.build b/src/nss-mymachines/meson.build
index 7b8198fe37..3e10325100 100644
--- a/src/nss-mymachines/meson.build
+++ b/src/nss-mymachines/meson.build
@@ -5,6 +5,6 @@ modules += [
'name' : 'nss_mymachines',
'conditions' : ['ENABLE_NSS_MYMACHINES'],
'sources' : files('nss-mymachines.c'),
- 'link_depends' : files('nss-mymachines.sym'),
+ 'version-script' : meson.current_source_dir() / 'nss-mymachines.sym',
},
]