From dd7e98129ac6edd39f819febe295134c190324d3 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Sat, 21 May 2022 02:20:50 +0800 Subject: [PATCH] system/libuv: Fix the undefined reference to `uv__strscpy' Signed-off-by: Xiang Xiao --- 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