From: Bernd Kuhls Date: Sun, 17 Sep 2017 17:58:18 +0000 (+0200) Subject: package/poco: Update check for uclibc toolchain X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4badc2a6bc6c8c91db6421081a68b3ffc96c3158;p=buildroot.git package/poco: Update check for uclibc toolchain LIBC is really only used to construct the target tuple. To check if we are using a uClibc toolchain, we use BR2_TOOLCHAIN_USES_UCLIBC. Signed-off-by: Bernd Kuhls Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- diff --git a/package/poco/poco.mk b/package/poco/poco.mk index 673b93a4f9..29752e24c9 100644 --- a/package/poco/poco.mk +++ b/package/poco/poco.mk @@ -28,7 +28,7 @@ POCO_OMIT = Data/ODBC PageCompiler \ $(if $(BR2_PACKAGE_POCO_DATA_MYSQL),,Data/MySQL) \ $(if $(BR2_PACKAGE_POCO_DATA_SQLITE),,Data/SQLite) -ifeq ($(LIBC),uclibc) +ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y) POCO_CONF_OPTS += --no-fpenvironment --no-wstring endif