From 57cf20953e19c2f47ddc0d61c59ed0a38f052e90 Mon Sep 17 00:00:00 2001 From: Lev Walkin Date: Tue, 21 Nov 2017 07:18:17 +0000 Subject: [PATCH] fix library dependency management --- libasn1fix/Makefile.am | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/libasn1fix/Makefile.am b/libasn1fix/Makefile.am index adb59e0c3..645c2f443 100644 --- a/libasn1fix/Makefile.am +++ b/libasn1fix/Makefile.am @@ -7,7 +7,6 @@ AM_CPPFLAGS = \ noinst_LTLIBRARIES = libasn1fix.la -libasn1fix_la_LIBDADD = $(top_builddir)/libasn1common/libasn1common.la libasn1fix_la_SOURCES = \ asn1fix.c asn1fix.h \ asn1fix_internal.h \ @@ -32,15 +31,13 @@ libasn1fix_la_SOURCES = \ asn1fix_constraint_compat.c check_fixer_CPPFLAGS = -DTOP_SRCDIR=${top_srcdir} $(AM_CPPFLAGS) -check_fixer_LDADD = $(noinst_LTLIBRARIES) \ - $(top_builddir)/libasn1common/libasn1common.la \ - $(top_builddir)/libasn1parser/libasn1parser.la check_crange_SOURCES = asn1fix_crange.c asn1fix_constraint_compat.c check_crange_CPPFLAGS = -DUNIT_TEST $(AM_CPPFLAGS) -check_crange_LDADD = $(noinst_LTLIBRARIES) \ - $(top_builddir)/libasn1common/libasn1common.la \ - $(top_builddir)/libasn1parser/libasn1parser.la + +LDADD = $(noinst_LTLIBRARIES) \ + $(top_builddir)/libasn1parser/libasn1parser.la \ + $(top_builddir)/libasn1common/libasn1common.la check_PROGRAMS = check_crange check_fixer