From 96bdf92c0a3408f10348e4e82b7062d2b177885f Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Mon, 22 Jun 2015 16:28:51 +0200 Subject: [PATCH] libs/re: fix build with musl and glibc Signed-off-by: Daniel Golle --- libs/re/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/re/Makefile b/libs/re/Makefile index b7abff2..561472a 100644 --- a/libs/re/Makefile +++ b/libs/re/Makefile @@ -33,7 +33,7 @@ endef TARGET_CFLAGS += $(FPIC) -ifneq ($(CONFIG_USE_EGLIBC),) +ifneq ($(CONFIG_USE_GLIBC)$(CONFIG_USE_MUSL),) TARGET_CFLAGS += -D_GNU_SOURCE endif -- 2.30.2