build: Use appropriate linker flag for the builder test

The `-export-dynamic` flag is a libtool-specific flag; since we're not
using libtool with Meson, we should instruct the C compiler to use the
appropriate linker flag instead.
This commit is contained in:
Emmanuele Bassi 2017-05-03 16:11:17 +01:00
parent c05fcdbba0
commit fb6f9e10da

View File

@ -3,7 +3,7 @@ tests = [
['accessible'],
['adjustment'],
['bitmask', ['../../gtk/gtkallocatedbitmask.c'], ['-DGTK_COMPILATION', '-UG_ENABLE_DEBUG']],
['builder', [], [], ['-export-dynamic']],
['builder', [], [], ['-Wl,--export-dynamic']],
['builderparser'],
['cellarea'],
['check-icon-names'],