From: Andrei Tatar Date: Thu, 4 May 2023 08:34:06 +0000 (+0200) Subject: Fix typo in macro definition X-Git-Tag: RELEASE-0.14.0~19 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0034cd86313d71d7db12dc46c248ca0d8846aa8a;p=unikraft%2Flibs%2Fmusl.git Fix typo in macro definition Previously we defined the macro `UK_LIBC_SYSCALL`, however this is not used anywhere in unikraft; `UK_LIBC_SYSCALLS` is most likely what was meant. This commit fixes the typo. Signed-off-by: Andrei Tatar Reviewed-by: Rares Miculescu Reviewed-by: Stefan Jumarea Reviewed-by: Razvan Deaconescu Approved-by: Eduard Vintilă Tested-by: Unikraft CI GitHub-Closes: #45 --- diff --git a/Makefile.uk b/Makefile.uk index 0d66cf0..0f3437a 100644 --- a/Makefile.uk +++ b/Makefile.uk @@ -141,7 +141,7 @@ LIBMUSL_CFLAGS-y += -Wno-missing-braces LIBMUSL_CFLAGS-$(call gcc_version_ge,8,0) += -Wno-cast-function-type LIBMUSL_CFLAGS-y += -Wno-format-contains-nul LIBMUSL_CFLAGS-y += -Wno-type-limits -LIBMUSL_CFLAGS-y += -DUK_LIBC_SYSCALL=0 +LIBMUSL_CFLAGS-y += -DUK_LIBC_SYSCALLS=0 LIBMUSL_CFLAGS-y += -D_XOPEN_SOURCE=700 LIBMUSL_CFLAGS-y += $(LIBMUSL_HDRS_FLAGS-y)