From 64332b7cdfd78b906f502a5b03501128fb422c47 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Fri, 3 Apr 2015 07:44:23 +0200 Subject: [PATCH] mysql: only use g++-uc wrapper with uClibc++ Signed-off-by: Nicolas Thill --- utils/mysql/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/mysql/Makefile b/utils/mysql/Makefile index 16312b3f1..f0553a9d7 100644 --- a/utils/mysql/Makefile +++ b/utils/mysql/Makefile @@ -58,7 +58,9 @@ define Package/libmysqlclient-r DEPENDS+= +libpthread endef -TARGET_CXX=g++-uc +ifneq ($(CONFIG_USE_UCLIBCXX),) + TARGET_CXX=g++-uc +endif TARGET_CFLAGS += $(FPIC)