From: Stéphane Graber Date: Thu, 2 Jun 2022 17:57:32 +0000 (-0400) Subject: meson: Export more variables to doc X-Git-Tag: lxc-5.0.0~11^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f80af4e12beda0f0a79d9b3d14ebd0d7e703a69c;p=thirdparty%2Flxc.git meson: Export more variables to doc Signed-off-by: Stéphane Graber --- diff --git a/meson.build b/meson.build index d687a496c..ec8163d6c 100644 --- a/meson.build +++ b/meson.build @@ -231,7 +231,17 @@ docbook2man = find_program('docbook2man', required: false) docconf = configuration_data() docconf.set('builddir', '.') +docconf.set('BINDIR', bindir) +docconf.set('DATADIR', datadir) +docconf.set('DOCDIR', docdir) +docconf.set('LOGPATH', lxclogpath) +docconf.set('LXC_DEFAULT_CONFIG', lxcdefaultconfig) docconf.set('LXC_GENERATE_DATE', generate_date) +docconf.set('LXC_GLOBAL_CONF', lxcglobalconfig) +docconf.set('LXCPATH', lxcpath) +docconf.set('LXCTEMPLATEDIR', lxctemplatedir) +docconf.set('LXC_USERNIC_CONF', lxc_user_network_conf) +docconf.set('LXC_USERNIC_DB', lxc_user_network_db) docconf.set('PACKAGE_VERSION', version_data.get('LXC_VERSION')) if sgml2man.found() and docbook2man.found() and sgml2man.full_path() == docbook2man.full_path() docconf.set('docdtd', '"-//Davenport//DTD DocBook V3.0//EN"')