meson: prefix need to be before that!

This commit is contained in:
Marcel Hollerbach 2017-10-03 21:45:41 +02:00
parent f0c2c4605b
commit 56d839a31f
1 changed files with 4 additions and 4 deletions

View File

@ -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')