You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by pk...@apache.org on 2022/06/03 17:25:59 UTC

[incubator-nuttx-apps] 02/02: system/libuv: Fix the undefined reference to `uv__strscpy'

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/incubator-nuttx-apps.git

commit dd7e98129ac6edd39f819febe295134c190324d3
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Sat May 21 02:20:50 2022 +0800

    system/libuv: Fix the undefined reference to `uv__strscpy'
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 system/libuv/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system/libuv/Makefile b/system/libuv/Makefile
index e56f31509..f88fd6623 100644
--- a/system/libuv/Makefile
+++ b/system/libuv/Makefile
@@ -69,7 +69,7 @@ CSRCS += posix-hrtime.c
 CSRCS += posix-poll.c
 CSRCS += uv-data-getter-setters.c
 CSRCS += version.c
-ifneq ($(CONFIG_LIBUV_UTILS_TEST),)
+ifeq ($(CONFIG_LIBUV_UTILS_TEST),)
 CSRCS += idna.c
 CSRCS += strscpy.c
 endif