commit 12780903e19144002a4efd80a03056b2a0bc6d7e
parent 2f21b910db7db7735acd7c4227dd50658a16c149
Author: Sree Harsha Totakura <sreeharsha@totakura.in>
Date: Thu, 9 Mar 2017 10:12:23 +0100
Link to built shared libraries using relative path from $(top_srcdir).
Using them with `-l<name>' failes automake builds. This commit fixes them.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/samples/Makefile.am b/src/samples/Makefile.am
@@ -9,7 +9,7 @@ taler_merchant_generate_payments_SOURCES = \
taler_merchant_generate_payments_LDADD = \
$(top_srcdir)/src/backenddb/libtalermerchantdb.la \
- -ltalermerchant \
+ $(top_srcdir)/src/lib/libtalermerchant.la \
$(LIBGCRYPT_LIBS) \
-ltalerfakebank \
-ltalerexchange \