This is an automated email from the ASF dual-hosted git repository.

pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 57011d231 import/Make.defs: Fix erroneous formatting of make condition
57011d231 is described below

commit 57011d2313f9e597e49323b0aaafbb03e8f93f01
Author: Ville Juven <[email protected]>
AuthorDate: Wed Oct 25 13:40:51 2023 +0300

    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

Reply via email to