Enlightement modules have been installing their shared object in the
path with the libc suffix. So, without this patch, the modules cannot be
loaded due to the mismatch the path.
Change-Id: I72e944b453c194daa141e282f9ea2d12e179a072
cpp = meson.get_compiler('cpp')
release='ver-autocannoli-@0@.@1@'.format(e_version[0], e_version[1])
-module_arch = '@0@-gnueabi-@1@-@2@'.format(host_machine.system(), host_machine.cpu(), release)
+target_libc = run_command('gcc', '-dumpmachine', check: true).stdout().strip().split('-')[-1]
+module_arch = '@0@-@1@-@2@-@3@'.format(host_machine.system(), target_libc, host_machine.cpu(), release)
config_h.set_quoted('MODULE_ARCH' , module_arch)
config_h.set_quoted('PACKAGE_VERSION' , ver)