meson: pacman-conf add missing libcommon link

Currently, we are erroneously exporting all the symbols via the
libalpm.so. As such, the libcommon dependency is resolved.

The libalpm.so exports are about to be resolved shortly, yet that
exposed that pacman-conf is missing a link against libcommon.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Emil Velikov 2021-01-05 00:48:11 +00:00 committed by Allan McRae
parent 793e2097a6
commit d53ba019f5

View file

@ -347,7 +347,7 @@ executable(
'pacman-conf', 'pacman-conf',
pacman_conf_sources, pacman_conf_sources,
include_directories : includes, include_directories : includes,
link_with : [libalpm], link_with : [libalpm, libcommon],
dependencies : [libarchive], dependencies : [libarchive],
install : true, install : true,
) )