Merge branch 'more-dynamic-exports-than-marco-polo' into 'main'

meson: Use export_dynmic: true instead of -rdynamic

See merge request plymouth/plymouth!223
This commit is contained in:
Ray Strode 2022-12-02 01:25:59 +00:00
commit 96d050ce96

View file

@ -26,13 +26,13 @@ plymouthd_cflags = [
'-DPLYMOUTH_DRM_ESCROW_DIRECTORY="@0@"'.format(get_option('libexecdir') / 'plymouth'),
'-DPLYMOUTH_LOG_DIRECTORY="@0@"'.format('/var/log'),
'-DPLYMOUTH_SPOOL_DIRECTORY="@0@"'.format(plymouthd_spool_dir),
'-rdynamic',
]
plymouthd = executable('plymouthd',
plymouthd_sources,
dependencies: plymouthd_deps,
c_args: plymouthd_cflags,
export_dynamic: true,
include_directories: config_h_inc,
install: true,
install_dir: get_option('sbindir'),