From f700781975dc823e8d02288aacbc775c6effed3f Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Sat, 25 May 2019 21:28:04 +0000 Subject: [PATCH] genlinkk-config: fix missing .a suffix Fixes: 96d094af13 mk/genlink-config: provide LIBNAME in devices autogeneration The initial fix had fixed the examples repo, but broke the tests and the template repo. Restore the suffix properly. --- mk/genlink-config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/genlink-config.mk b/mk/genlink-config.mk index d2970b4c..4686fe6d 100644 --- a/mk/genlink-config.mk +++ b/mk/genlink-config.mk @@ -65,7 +65,7 @@ endif endif LDLIBS += -l$(LIBNAME) -LIBDEPS += $(OPENCM3_DIR)/lib/lib$(LIBNAME) +LIBDEPS += $(OPENCM3_DIR)/lib/lib$(LIBNAME).a # only append to LDLIBS if the directory exists ifneq (,$(wildcard $(OPENCM3_DIR)/lib))