summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2020-08-20 02:39:39 -0400
committerRichard Hughes <richard@hughsie.com>2020-08-24 10:51:27 +0100
commitda88ac9720232a703e3514ba817914e3bc93300c (patch)
tree7e6d06d1df84d6307a08bb51edf90d0c2189c62b
parent807f410e28074c8ad2b99682446bbb460fd54adf (diff)
Fix setting libexecdir for command-not-found helper.
-rw-r--r--contrib/command-not-found/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/command-not-found/meson.build b/contrib/command-not-found/meson.build
index b0f4f17b0..a2155ca32 100644
--- a/contrib/command-not-found/meson.build
+++ b/contrib/command-not-found/meson.build
@@ -13,7 +13,7 @@ executable(
)
bashprofile_config_data = configuration_data()
-bashprofile_config_data.set('LIBEXECDIR', get_option('libexecdir'))
+bashprofile_config_data.set('LIBEXECDIR', join_paths(get_option('prefix'), get_option('libexecdir')))
configure_file(
input: 'PackageKit.sh.in',
output: 'PackageKit.sh',