]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
rec: strip quotes meson adds from SYSCONFDIR (and two other config values) 15437/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 15 Apr 2025 13:36:26 +0000 (15:36 +0200)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 15 Apr 2025 13:53:54 +0000 (15:53 +0200)
pdns/recursordist/rec-rust-lib/rust/meson.build

index 579514f1d3e03d64e11bda65eca56926ba2c459c..478b3d6c78eee84e4b2c701d005c0bd33ff23a17 100644 (file)
@@ -7,9 +7,9 @@ outfile = 'librecrust.a'
 
 env = environment()
 env.append('CARGO', cargo.full_path())
-env.append('SYSCONFDIR', conf.get('SYSCONFDIR'))
-env.append('NODCACHEDIRNOD', conf.get('NODCACHEDIRNOD'))
-env.append('NODCACHEDIRUDR', conf.get('NODCACHEDIRUDR'))
+env.append('SYSCONFDIR', conf.get('SYSCONFDIR').strip('"'))
+env.append('NODCACHEDIRNOD', conf.get('NODCACHEDIRNOD').strip('"'))
+env.append('NODCACHEDIRUDR', conf.get('NODCACHEDIRUDR').strip('"'))
 env.append('builddir', '.')
 env.append('srcdir', meson.current_source_dir())
 env.append('RUST_TARGET', '')