summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hesse <mail@eworm.de>2020-05-06 08:57:00 +0200
committerChristian Hesse <mail@eworm.de>2020-05-06 08:57:00 +0200
commit1d3f14b722017808ced3c940c16048d0ac631305 (patch)
tree5a6ef85ad963ab96faf45a6b74c098e710b0eed9
parent1bd3989c5bcaad1c8c2c565ea0eb5249ac264792 (diff)
alpm: fix paths for configuration files
-rw-r--r--backends/alpm/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/alpm/meson.build b/backends/alpm/meson.build
index 179b02fe6..db03c898d 100644
--- a/backends/alpm/meson.build
+++ b/backends/alpm/meson.build
@@ -33,9 +33,9 @@ shared_module(
c_args: [
'-DPK_LOG_PREFIX="PACKAGEKIT"',
'-DG_LOG_DOMAIN="PackageKit-alpm"',
- '-DPK_BACKEND_CONFIG_FILE="@0@"'.format(join_paths(get_option('sysconfdir'), 'pacman.conf')),
- '-DPK_BACKEND_GROUP_FILE="@0@"'.format(join_paths(get_option('sysconfdir'), 'groups.list')),
- '-DPK_BACKEND_REPO_FILE="@0@"'.format(join_paths(get_option('sysconfdir'), 'repos.list')),
+ '-DPK_BACKEND_CONFIG_FILE="@0@"'.format(join_paths(get_option('sysconfdir'), 'PackageKit', 'alpm.d', 'pacman.conf')),
+ '-DPK_BACKEND_GROUP_FILE="@0@"'.format(join_paths(get_option('sysconfdir'), 'PackageKit', 'alpm.d', 'groups.list')),
+ '-DPK_BACKEND_REPO_FILE="@0@"'.format(join_paths(get_option('sysconfdir'), 'PackageKit', 'alpm.d', 'repos.list')),
'-DPK_BACKEND_DEFAULT_PATH="/bin:/usr/bin:/sbin:/usr/sbin"',
],
install: true,