diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/libsystemd-shared/src/Makefile | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/src/libsystemd-shared/src/Makefile b/src/libsystemd-shared/src/Makefile index a8f08e8934..9cbcb79e4a 100644 --- a/src/libsystemd-shared/src/Makefile +++ b/src/libsystemd-shared/src/Makefile @@ -133,30 +133,20 @@ libsystemd_shared_la_CFLAGS = \ $(LIBIDN_CFLAGS) \ $(SECCOMP_CFLAGS) +# We can't use libshared.la here because it would +# pull in libsystemd*-internal.la +# -- Felipe Sateler +# What? We're pulling in libsystemd-internal.la +# anyway! +# -- Luke Shumaker libsystemd_shared_la_LIBADD = \ libsystemd-internal.la \ libsystemd-basic.la \ - libsystemd-journal-internal.la \ libudev-internal.la \ $(ACL_LIBS) \ $(LIBIDN_LIBS) \ $(SECCOMP_LIBS) -libsystemd_shared_la_CFLAGS = \ - $(ACL_CFLAGS) \ - $(LIBIDN_CFLAGS) \ - $(SECCOMP_CFLAGS) \ - -fvisibility=default - -libsystemd_shared_la_LIBADD = \ - $(libsystemd_basic_la_LIBADD) \ - $(libsystemd_internal_la_LIBADD) \ - $(libsystemd_journal_internal_la_LIBADD) \ - $(libudev_internal_la_LIBADD) \ - $(ACL_LIBS) \ - $(LIBIDN_LIBS) \ - $(SECCOMP_LIBS) - libsystemd_shared_la_LDFLAGS = \ -release $(PACKAGE_VERSION) |