meson build - fix use module defines to be upper case again

This commit is contained in:
Carsten Haitzler 2017-08-09 09:24:55 +09:00
parent 24cf739b2c
commit dc9879c6ef
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ foreach m: mods
if get_option(opt) == true and disable == false
_conf = 'USE_MODULE_' + m.underscorify()
_conf = 'USE_MODULE_' + m.underscorify().to_upper()
_dir = join_paths(dir_module_e, m)
_dir_bin = join_paths(_dir, module_arch)
_inc = include_directories(module_includes2, join_paths('.', m))