From: Nicolas Thill Date: Fri, 3 Apr 2015 05:44:23 +0000 (+0200) Subject: mysql: only use g++-uc wrapper with uClibc++ X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=64332b7cdfd78b906f502a5b03501128fb422c47;p=openwrt-packages.git mysql: only use g++-uc wrapper with uClibc++ Signed-off-by: Nicolas Thill --- 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)