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:
parent
793e2097a6
commit
d53ba019f5
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue