[Buildroot] [git commit] package/poco: Update check for uclibc toolchain

Arnout Vandecappelle (Essensium/Mind) arnout at mind.be
Sun Sep 24 13:44:11 UTC 2017


commit: https://git.buildroot.net/buildroot/commit/?id=4badc2a6bc6c8c91db6421081a68b3ffc96c3158
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

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 <bernd.kuhls at t-online.de>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout at mind.be>
---
 package/poco/poco.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/poco/poco.mk b/package/poco/poco.mk
index 673b93a..29752e2 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
 


More information about the buildroot mailing list