From 57011d2313f9e597e49323b0aaafbb03e8f93f01 Mon Sep 17 00:00:00 2001 From: Ville Juven Date: Wed, 25 Oct 2023 13:40:51 +0300 Subject: [PATCH] import/Make.defs: Fix erroneous formatting of make condition Fixes: /apps/import/Make.defs:79: extraneous text after 'else' directive --- import/Make.defs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import/Make.defs b/import/Make.defs index 19aab43b2..ac3e999e2 100644 --- a/import/Make.defs +++ b/import/Make.defs @@ -76,7 +76,7 @@ ifneq ($(LIBM),".") LDLIBPATH += -L "${shell dirname $(LIBM)}" LDLIBS += -lm endif -else ifneq($(CONFIG_LIBM_NONE),) +else ifneq ($(CONFIG_LIBM_NONE),) LDLIBS += -lm endif endif