diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2016-04-14 00:24:58 +0000 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2016-04-14 00:27:04 +0000 |
commit | e669a55b2cfec9d45c1ec3fc529a373209eeaca0 (patch) | |
tree | 2dc2e58f439676d62d421d931e76a7114baeb8e7 | |
parent | 23d8b221c0490b1b00044072b329d3ab76d561e3 (diff) |
build-sys: add missing -ldl
Fixes #3035
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 34eaefd0bf..198265f48d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4722,7 +4722,8 @@ systemd_localed_SOURCES = \ src/locale/localed.c systemd_localed_LDADD = \ - libshared.la + libshared.la \ + -ldl systemd_localed_CFLAGS = \ $(AM_CFLAGS) \ |