diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-09-30 10:08:09 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-10-01 00:02:08 +0200 |
commit | ceadabb102b05b237bfab11e1f742975ee4daeb1 (patch) | |
tree | 069278340f00f5dbdf07ce155960932c6056d199 /Makefile.am | |
parent | ba54bcb822fe1b6ab5c653d63dfdae706a28a128 (diff) |
build-sys: link libsystemd-login with libsystemd-label.la
libsystemd-login.la uses cg_create() that currently seems to be a part
of libsystemd-label.la. However, it doesn't link against that library
and it seems that none of the (unconditional) libraries it uses do. In
the end, people end up getting «undefined reference to `cg_create'»
when trying to build e.g. dbus.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 92de1630b4..af4e215538 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3919,6 +3919,7 @@ libsystemd_login_la_LDFLAGS = \ libsystemd_login_la_LIBADD = \ libsystemd-shared.la \ libsystemd-daemon-internal.la \ + libsystemd-label.la \ $(RT_LIBS) libsystemd_login_internal_la_SOURCES = \ |