From: Gaulthier Gain Date: Wed, 29 Jan 2020 21:18:38 +0000 (+0100) Subject: Avoid multiple definitions by excluding functions related to fcntl X-Git-Tag: RELEASE-0.4~13 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0b2bc2f46cc36f17d6c59cf2c95e7811ec5f0f1d;p=unikraft%2Flibs%2Fmusl.git Avoid multiple definitions by excluding functions related to fcntl Signed-off-by: Gaulthier Gain Reviewed-by: Simon Kuenzer --- diff --git a/Makefile.uk.musl.fcntl b/Makefile.uk.musl.fcntl index 317174a..b2f8d2b 100644 --- a/Makefile.uk.musl.fcntl +++ b/Makefile.uk.musl.fcntl @@ -1,6 +1,6 @@ -LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/creat.c -LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/fcntl.c -LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/open.c -LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/openat.c -LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/posix_fadvise.c +#LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/creat.c +#LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/fcntl.c +#LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/open.c +#LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/openat.c +#LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/posix_fadvise.c LIBMUSL_SRCS-y += $(LIBMUSL)/src/fcntl/posix_fallocate.c