diff options
author | Michael Biebl <biebl@debian.org> | 2012-01-10 07:26:30 +0100 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2012-01-10 07:26:30 +0100 |
commit | 118ca5966f21c07ae8561f33da45b3810b32889a (patch) | |
tree | 4465df5a727af4d701cb664be5655490432080d6 | |
parent | 7e4ab3c5a6295193d0c58d353b6430265d842f34 (diff) |
build-sys: link systemctl and systemd-journalctl against libsystemd-id128
Both use logs-show.c which requires libsystemd-id128 for
sd_id128_to_string ().
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index f5cef3f89a..2279ff48c0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -974,6 +974,7 @@ systemctl_LDADD = \ libsystemd-basic.la \ libsystemd-daemon.la \ libsystemd-journal.la \ + libsystemd-id128.la \ $(DBUS_LIBS) systemd_notify_SOURCES = \ @@ -1239,7 +1240,8 @@ systemd_journalctl_SOURCES = \ systemd_journalctl_LDADD = \ libsystemd-basic.la \ - libsystemd-journal.la + libsystemd-journal.la \ + libsystemd-id128.la if HAVE_XZ systemd_journalctl_SOURCES += \ |