diff options
author | Samuel Martin <s.martin49@gmail.com> | 2015-03-17 11:20:24 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-03-17 13:02:49 +0100 |
commit | b2ad6e36a981fc784fd0e8f6cdf5b9047f79c8e4 (patch) | |
tree | 3bb97a8837385486bb4f464ace7082b73c9aabe9 | |
parent | 39614eea8e73905aee26bcb2d891580c762236f1 (diff) | |
download | buildroot-b2ad6e36a981fc784fd0e8f6cdf5b9047f79c8e4.tar.gz buildroot-b2ad6e36a981fc784fd0e8f6cdf5b9047f79c8e4.zip |
package/cmake: not available on static-only build
Fixes:
http://autobuild.buildroot.net/results/9f7/9f7c8d5078cd1f3cd493f9ae8e95c8ee728f98fd/
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/cmake/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/cmake/Config.in b/package/cmake/Config.in index e06d4b7bcf..dbc7d015f4 100644 --- a/package/cmake/Config.in +++ b/package/cmake/Config.in @@ -22,6 +22,7 @@ config BR2_PACKAGE_CMAKE_CTEST depends on BR2_PACKAGE_CMAKE_ARCH_SUPPORTS depends on BR2_USE_WCHAR # libarchive depends on BR2_INSTALL_LIBSTDCPP + depends on !BR2_STATIC_LIBS help CTest is a testing tool distributed as a part of CMake. It can be used to automate updating (using CVS for example), @@ -31,6 +32,6 @@ config BR2_PACKAGE_CMAKE_CTEST http://www.cmake.org/ -comment "ctest needs a toolchain w/ C++, wchar" +comment "ctest needs a toolchain w/ C++, wchar, dynamic library" depends on BR2_PACKAGE_CMAKE_ARCH_SUPPORTS - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || BR2_STATIC_LIBS |