bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/tools/edi.git/commit/?id=56d839a31f5ff2427b117508a799e3ded0c78130
commit 56d839a31f5ff2427b117508a799e3ded0c78130 Author: Marcel Hollerbach <marcel-hollerb...@t-online.de> Date: Tue Oct 3 21:45:41 2017 +0200 meson: prefix need to be before that! --- meson.build | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meson.build b/meson.build index 5e1a209..7a46710 100644 --- a/meson.build +++ b/meson.build @@ -14,10 +14,10 @@ config_h.set_quoted('PACKAGE_TARNAME' , meson.project_name()) config_h.set_quoted('PACKAGE_BUGREPORT', 'enlightenment-devel@lists.sourceforge.net') config_h.set_quoted('PACKAGE_STRING' , meson.project_name() + ' ' + meson.project_version()) config_h.set_quoted('PACKAGE_NAME' , meson.project_name()) -config_h.set_quoted('PACKAGE_BIN_DIR', get_option('bindir')) -config_h.set_quoted('PACKAGE_LIB_DIR', get_option('libdir')) -config_h.set_quoted('PACKAGE_DATA_DIR', get_option('datadir')) -config_h.set_quoted('PACKAGE_DOC_DIR', get_option('infodir')) +config_h.set_quoted('PACKAGE_BIN_DIR', join_paths(get_option('prefix'), get_option('bindir'))) +config_h.set_quoted('PACKAGE_LIB_DIR', join_paths(get_option('prefix'), get_option('libdir'))) +config_h.set_quoted('PACKAGE_DATA_DIR', join_paths(get_option('prefix'), get_option('datadir'), 'edi')) +config_h.set_quoted('PACKAGE_DOC_DIR', join_paths(get_option('prefix'), get_option('infodir'), 'edi')) config_h.set_quoted('EFL_BETA_API_SUPPORT' , '1') --