diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-27 15:03:28 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-27 15:03:28 +0100 |
commit | 9ac65b37bd34a4ba9a97156ace0fe91ce3670912 (patch) | |
tree | cd7ba1fecc6f515f500e5f94e64f042967c383e4 | |
parent | 0923816c64f2912226164d171e0ae92d39fb979e (diff) | |
download | buildroot-9ac65b37bd34a4ba9a97156ace0fe91ce3670912.tar.gz buildroot-9ac65b37bd34a4ba9a97156ace0fe91ce3670912.zip |
ustr: not available for static-only configurations
ustr now unconditionally builds a shared library, so we have to mark
it as not available for static-only builds. The only reverse
dependencies of ustr is libsemanage, which was anyway already not
available for pure static builds.
Fixes:
http://autobuild.buildroot.org/results/734/734975f6ac041e8aece07205c0b8966fe51e7df1/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/ustr/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/ustr/Config.in b/package/ustr/Config.in index a86b26d3d4..0d9c272b6b 100644 --- a/package/ustr/Config.in +++ b/package/ustr/Config.in @@ -1,6 +1,11 @@ config BR2_PACKAGE_USTR bool "ustr" + # unconditionally builds a shared library + depends on !BR2_STATIC_LIBS help A small, safe string library. http://www.and.org/ustr/ + +comment "ustr needs a toolchain w/ dynamic library" + depends on BR2_STATIC_LIBS |