2018-10-16 07:33:07 +02:00
|
|
|
diff --git a/data/meson.build b/data/meson.build
|
2020-11-11 01:05:07 +01:00
|
|
|
index 14454458..12a798c0 100644
|
2018-10-16 07:33:07 +02:00
|
|
|
--- a/data/meson.build
|
|
|
|
+++ b/data/meson.build
|
2020-03-07 18:57:31 +01:00
|
|
|
@@ -17,7 +17,7 @@ endif
|
2020-02-06 03:34:38 +01:00
|
|
|
|
|
|
|
if build_standalone
|
2019-11-18 18:44:54 +01:00
|
|
|
install_data(['daemon.conf'],
|
|
|
|
- install_dir : join_paths(sysconfdir, 'fwupd')
|
|
|
|
+ install_dir : join_paths(sysconfdir_install, 'fwupd')
|
|
|
|
)
|
2018-10-16 07:33:07 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
diff --git a/data/pki/meson.build b/data/pki/meson.build
|
2020-04-15 21:22:43 +02:00
|
|
|
index 94bb0b6f..1ea6a9ac 100644
|
2018-10-16 07:33:07 +02:00
|
|
|
--- a/data/pki/meson.build
|
|
|
|
+++ b/data/pki/meson.build
|
2020-04-15 21:22:43 +02:00
|
|
|
@@ -3,24 +3,23 @@ install_data([
|
|
|
|
'GPG-KEY-Linux-Foundation-Firmware',
|
|
|
|
'GPG-KEY-Linux-Vendor-Firmware-Service',
|
|
|
|
],
|
|
|
|
- install_dir : join_paths(sysconfdir, 'pki', 'fwupd')
|
|
|
|
+ install_dir : join_paths(sysconfdir_install, 'pki', 'fwupd')
|
|
|
|
)
|
2018-10-16 07:33:07 +02:00
|
|
|
|
2020-04-15 21:22:43 +02:00
|
|
|
install_data([
|
|
|
|
'GPG-KEY-Linux-Foundation-Metadata',
|
|
|
|
'GPG-KEY-Linux-Vendor-Firmware-Service',
|
|
|
|
],
|
|
|
|
- install_dir : join_paths(sysconfdir, 'pki', 'fwupd-metadata')
|
|
|
|
+ install_dir : join_paths(sysconfdir_install, 'pki', 'fwupd-metadata')
|
|
|
|
)
|
2018-10-16 07:33:07 +02:00
|
|
|
|
2020-04-15 21:22:43 +02:00
|
|
|
install_data([
|
|
|
|
'LVFS-CA.pem',
|
|
|
|
],
|
|
|
|
- install_dir : join_paths(sysconfdir, 'pki', 'fwupd')
|
|
|
|
+ install_dir : join_paths(sysconfdir_install, 'pki', 'fwupd')
|
|
|
|
)
|
|
|
|
install_data([
|
|
|
|
'LVFS-CA.pem',
|
|
|
|
],
|
|
|
|
- install_dir : join_paths(sysconfdir, 'pki', 'fwupd-metadata')
|
|
|
|
+ install_dir : join_paths(sysconfdir_install, 'pki', 'fwupd-metadata')
|
|
|
|
)
|
|
|
|
-
|
2018-10-16 07:33:07 +02:00
|
|
|
diff --git a/data/remotes.d/meson.build b/data/remotes.d/meson.build
|
2019-11-18 18:44:54 +01:00
|
|
|
index 826a3c1d..b78db663 100644
|
2018-10-16 07:33:07 +02:00
|
|
|
--- a/data/remotes.d/meson.build
|
|
|
|
+++ b/data/remotes.d/meson.build
|
2020-03-07 18:57:31 +01:00
|
|
|
@@ -3,7 +3,7 @@ if build_daemon and get_option('lvfs')
|
2018-10-16 07:33:07 +02:00
|
|
|
'lvfs.conf',
|
|
|
|
'lvfs-testing.conf',
|
|
|
|
],
|
|
|
|
- install_dir : join_paths(sysconfdir, 'fwupd', 'remotes.d')
|
|
|
|
+ install_dir : join_paths(sysconfdir_install, 'fwupd', 'remotes.d')
|
|
|
|
)
|
|
|
|
i18n.merge_file(
|
|
|
|
input: 'lvfs.metainfo.xml',
|
2020-03-07 18:57:31 +01:00
|
|
|
@@ -37,12 +37,12 @@ configure_file(
|
2019-02-25 16:15:49 +01:00
|
|
|
output : 'vendor.conf',
|
2018-10-16 07:33:07 +02:00
|
|
|
configuration : con2,
|
|
|
|
install: true,
|
|
|
|
- install_dir: join_paths(sysconfdir, 'fwupd', 'remotes.d'),
|
|
|
|
+ install_dir: join_paths(sysconfdir_install, 'fwupd', 'remotes.d'),
|
|
|
|
)
|
|
|
|
configure_file(
|
2019-02-25 16:15:49 +01:00
|
|
|
input : 'vendor-directory.conf',
|
|
|
|
output : 'vendor-directory.conf',
|
2018-10-16 07:33:07 +02:00
|
|
|
configuration : con2,
|
|
|
|
install: true,
|
|
|
|
- install_dir: join_paths(sysconfdir, 'fwupd', 'remotes.d'),
|
|
|
|
+ install_dir: join_paths(sysconfdir_install, 'fwupd', 'remotes.d'),
|
|
|
|
)
|
|
|
|
diff --git a/meson.build b/meson.build
|
2020-11-11 01:05:07 +01:00
|
|
|
index a6fb55dd..aedb7530 100644
|
2018-10-16 07:33:07 +02:00
|
|
|
--- a/meson.build
|
|
|
|
+++ b/meson.build
|
2020-11-11 01:05:07 +01:00
|
|
|
@@ -183,6 +183,12 @@ endif
|
2018-10-16 07:33:07 +02:00
|
|
|
mandir = join_paths(prefix, get_option('mandir'))
|
|
|
|
localedir = join_paths(prefix, get_option('localedir'))
|
|
|
|
|
|
|
|
+if get_option('sysconfdir_install') != ''
|
|
|
|
+ sysconfdir_install = join_paths(prefix, get_option('sysconfdir_install'))
|
|
|
|
+else
|
|
|
|
+ sysconfdir_install = sysconfdir
|
|
|
|
+endif
|
|
|
|
+
|
2020-02-06 03:34:38 +01:00
|
|
|
diffcmd = find_program('diff')
|
2018-10-16 07:33:07 +02:00
|
|
|
gio = dependency('gio-2.0', version : '>= 2.45.8')
|
2020-02-06 03:34:38 +01:00
|
|
|
giounix = dependency('gio-unix-2.0', version : '>= 2.45.8', required: false)
|
2018-10-16 07:33:07 +02:00
|
|
|
diff --git a/meson_options.txt b/meson_options.txt
|
2020-11-11 01:05:07 +01:00
|
|
|
index 0a0e2853..198ae930 100644
|
2018-10-16 07:33:07 +02:00
|
|
|
--- a/meson_options.txt
|
|
|
|
+++ b/meson_options.txt
|
2020-10-27 07:29:44 +01:00
|
|
|
@@ -1,3 +1,4 @@
|
2018-10-16 07:33:07 +02:00
|
|
|
+option('sysconfdir_install', type: 'string', value: '', description: 'sysconfdir to use during installation')
|
2020-10-27 07:29:44 +01:00
|
|
|
option('build', type : 'combo', choices : ['all', 'standalone', 'library'], value : 'all', description : 'build type')
|
|
|
|
option('agent', type : 'boolean', value : true, description : 'enable the fwupd agent')
|
|
|
|
option('consolekit', type : 'boolean', value : true, description : 'enable ConsoleKit support')
|
2020-04-15 21:22:43 +02:00
|
|
|
diff --git a/plugins/ata/meson.build b/plugins/ata/meson.build
|
2020-11-11 01:05:07 +01:00
|
|
|
index f32b97fe..679ccc7b 100644
|
2020-04-15 21:22:43 +02:00
|
|
|
--- a/plugins/ata/meson.build
|
|
|
|
+++ b/plugins/ata/meson.build
|
|
|
|
@@ -7,7 +7,7 @@ install_data([
|
|
|
|
)
|
|
|
|
|
|
|
|
install_data(['ata.conf'],
|
|
|
|
- install_dir: join_paths(sysconfdir, 'fwupd')
|
|
|
|
+ install_dir: join_paths(sysconfdir_install, 'fwupd')
|
|
|
|
)
|
|
|
|
|
|
|
|
shared_module('fu_plugin_ata',
|
2019-02-25 16:15:49 +01:00
|
|
|
diff --git a/plugins/dell-esrt/meson.build b/plugins/dell-esrt/meson.build
|
2020-02-06 03:34:38 +01:00
|
|
|
index ed4eee70..76dbdb1d 100644
|
2019-02-25 16:15:49 +01:00
|
|
|
--- a/plugins/dell-esrt/meson.build
|
|
|
|
+++ b/plugins/dell-esrt/meson.build
|
2020-03-07 18:57:31 +01:00
|
|
|
@@ -37,5 +37,5 @@ configure_file(
|
2019-02-25 16:15:49 +01:00
|
|
|
output : 'dell-esrt.conf',
|
|
|
|
configuration : con2,
|
|
|
|
install: true,
|
|
|
|
- install_dir: join_paths(sysconfdir, 'fwupd', 'remotes.d'),
|
|
|
|
+ install_dir: join_paths(sysconfdir_install, 'fwupd', 'remotes.d'),
|
|
|
|
)
|
2018-10-16 07:33:07 +02:00
|
|
|
diff --git a/plugins/redfish/meson.build b/plugins/redfish/meson.build
|
2020-11-11 01:05:07 +01:00
|
|
|
index 92762791..08bb37ea 100644
|
2018-10-16 07:33:07 +02:00
|
|
|
--- a/plugins/redfish/meson.build
|
|
|
|
+++ b/plugins/redfish/meson.build
|
2020-11-11 01:05:07 +01:00
|
|
|
@@ -26,7 +26,7 @@ shared_module('fu_plugin_redfish',
|
2018-10-16 07:33:07 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
install_data(['redfish.conf'],
|
|
|
|
- install_dir: join_paths(sysconfdir, 'fwupd')
|
|
|
|
+ install_dir: join_paths(sysconfdir_install, 'fwupd')
|
|
|
|
)
|
|
|
|
|
|
|
|
if get_option('tests')
|
2019-11-18 18:44:54 +01:00
|
|
|
diff --git a/plugins/thunderbolt/meson.build b/plugins/thunderbolt/meson.build
|
2020-11-11 01:05:07 +01:00
|
|
|
index 6b2368fb..2bd06fed 100644
|
2019-11-18 18:44:54 +01:00
|
|
|
--- a/plugins/thunderbolt/meson.build
|
|
|
|
+++ b/plugins/thunderbolt/meson.build
|
2020-11-11 01:05:07 +01:00
|
|
|
@@ -31,7 +31,7 @@ fu_plugin_thunderbolt = shared_module('fu_plugin_thunderbolt',
|
2019-11-18 18:44:54 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
install_data(['thunderbolt.conf'],
|
|
|
|
- install_dir: join_paths(sysconfdir, 'fwupd')
|
|
|
|
+ install_dir: join_paths(sysconfdir_install, 'fwupd')
|
|
|
|
)
|
|
|
|
# we use functions from 2.52 in the tests
|
|
|
|
if get_option('tests') and umockdev.found() and gio.version().version_compare('>= 2.52')
|
2018-10-16 07:33:07 +02:00
|
|
|
diff --git a/plugins/uefi/meson.build b/plugins/uefi/meson.build
|
2020-11-11 01:05:07 +01:00
|
|
|
index 2d1b2d22..c4217a72 100644
|
2018-10-16 07:33:07 +02:00
|
|
|
--- a/plugins/uefi/meson.build
|
|
|
|
+++ b/plugins/uefi/meson.build
|
2020-11-11 01:05:07 +01:00
|
|
|
@@ -97,7 +97,7 @@ if get_option('man')
|
2020-03-07 18:57:31 +01:00
|
|
|
endif
|
2018-10-16 07:33:07 +02:00
|
|
|
|
|
|
|
install_data(['uefi.conf'],
|
|
|
|
- install_dir: join_paths(sysconfdir, 'fwupd')
|
|
|
|
+ install_dir: join_paths(sysconfdir_install, 'fwupd')
|
|
|
|
)
|
|
|
|
|
|
|
|
if get_option('tests')
|
2020-03-07 18:57:31 +01:00
|
|
|
diff --git a/plugins/upower/meson.build b/plugins/upower/meson.build
|
|
|
|
index 290a3eb6..9ab2f452 100644
|
|
|
|
--- a/plugins/upower/meson.build
|
|
|
|
+++ b/plugins/upower/meson.build
|
|
|
|
@@ -23,5 +23,5 @@ shared_module('fu_plugin_upower',
|
|
|
|
)
|
|
|
|
|
|
|
|
install_data(['upower.conf'],
|
|
|
|
- install_dir: join_paths(sysconfdir, 'fwupd')
|
|
|
|
+ install_dir: join_paths(sysconfdir_install, 'fwupd')
|
|
|
|
)
|