From 7bda677eb09d1495b0f33c50207eae50f86cb3ec Mon Sep 17 00:00:00 2001 From: Wonki Kim Date: Thu, 31 Jan 2019 06:04:23 +0000 Subject: [PATCH] meson: modify install path of bqmgr binary bqmgr is installed under ${libdir}/ecore_buffer/bin/ on autotools. and it's not on meson. this patch modify the install path on meson to a place that autotools installs outputs under and this contains file name of binary also Reviewed-by: Marcel Hollerbach Differential Revision: https://phab.enlightenment.org/D7836 --- src/bin/ecore_buffer/meson.build | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/bin/ecore_buffer/meson.build b/src/bin/ecore_buffer/meson.build index 86ee20a872..5e1a9d9381 100644 --- a/src/bin/ecore_buffer/meson.build +++ b/src/bin/ecore_buffer/meson.build @@ -1,5 +1,6 @@ -executable('bq_mgr', - ['bq_mgr_protocol.c', 'bq_mgr.c'], - dependencies: [ecore, ecore_buffer, ecore_buffer_deps], - install : true +executable('bqmgr', + ['bq_mgr_protocol.c', 'bq_mgr.c'], + dependencies: [ecore, ecore_buffer, ecore_buffer_deps], + install: true, + install_dir: join_paths(dir_lib, 'ecore_buffer', 'bin') )