diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2015-05-03 13:33:02 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-05-03 13:33:02 +0200 |
commit | 25206d6e26dc4ce9c272e68876f31d0ca7d30e67 (patch) | |
tree | 36c56eadab3e1efc982d2318880e9f541313fff5 | |
parent | 0d9d8984a9240a27f5ed2e15f1977ada67266906 (diff) | |
download | buildroot-25206d6e26dc4ce9c272e68876f31d0ca7d30e67.tar.gz buildroot-25206d6e26dc4ce9c272e68876f31d0ca7d30e67.zip |
bcusdk: needs argp-standalone on uClibc
Fixes:
http://autobuild.buildroot.net/results/181/181f12d3a46ef10113ab47f75ccf57cfc1b6210f/
http://autobuild.buildroot.net/results/25c/25cb21dd5a0dad318c498fcf7a889ae2ce93c697/
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/bcusdk/Config.in | 1 | ||||
-rw-r--r-- | package/bcusdk/bcusdk.mk | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/package/bcusdk/Config.in b/package/bcusdk/Config.in index 658c5921ea..72deef154b 100644 --- a/package/bcusdk/Config.in +++ b/package/bcusdk/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_BCUSDK depends on BR2_USE_MMU # libpthsem depends on BR2_INSTALL_LIBSTDCPP select BR2_PACKAGE_LIBPTHSEM + select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC help A free development environment for the Bus Coupling Units of the European Installation Bus. diff --git a/package/bcusdk/bcusdk.mk b/package/bcusdk/bcusdk.mk index 80c98af08a..697b5ce237 100644 --- a/package/bcusdk/bcusdk.mk +++ b/package/bcusdk/bcusdk.mk @@ -20,7 +20,10 @@ BCUSDK_CONF_OPTS = \ --without-pth-test \ --with-pth=$(STAGING_DIR)/usr -BCUSDK_DEPENDENCIES = libpthsem +BCUSDK_DEPENDENCIES = \ + libpthsem \ + $(if $(BR2_PACKAGE_ARGP_STANDALONE),argp-standalone) + define BCUSDK_REMOVE_EXAMPLES $(RM) -rf $(TARGET_DIR)/usr/share/bcusdk |