diff options
author | Romain Naour <romain.naour@gmail.com> | 2016-02-27 14:13:37 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-27 16:23:40 +0100 |
commit | 698f1e971c6c9a72ebdfcd43d19ec647d2c5767e (patch) | |
tree | 5f01a56bda522ae86594ca9800e26da7d125fa5f | |
parent | f0028ae2e6d1e7359eaa5aecef35863022328add (diff) | |
download | buildroot-698f1e971c6c9a72ebdfcd43d19ec647d2c5767e.tar.gz buildroot-698f1e971c6c9a72ebdfcd43d19ec647d2c5767e.zip |
package/qhull: fix comment dependency
The comment must be displayed with toolchain without C++ compiler support when
BR2_STATIC_LIBS is not set.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/qhull/Config.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/qhull/Config.in b/package/qhull/Config.in index f671e88d34..2bc8ff6412 100644 --- a/package/qhull/Config.in +++ b/package/qhull/Config.in @@ -15,5 +15,4 @@ config BR2_PACKAGE_QHULL http://www.qhull.org comment "qhull needs a toolchain w/ C++, dynamic library" - depends on !BR2_INSTALL_LIBSTDCPP - depends on BR2_STATIC_LIBS + depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS |