diff options
author | 2020-11-18 14:13:22 +0100 | |
---|---|---|
committer | 2020-11-18 17:58:14 +0100 | |
commit | 4c8a6d3aa66b93b1e0320f0160938314c1915534 (patch) | |
tree | 9afec00ca31df59b5b98de77a8b62ec8baf7a952 | |
parent | b359d0e7e5f8a1208b274ab57b1fae38af00663f (diff) | |
download | buildroot-4c8a6d3aa66b93b1e0320f0160938314c1915534.tar.gz buildroot-4c8a6d3aa66b93b1e0320f0160938314c1915534.tar.bz2 |
package/gvfs: show warning when BR2_STATIC_LIBS=y
Commit 4266c9f54f (package/gvfs: needs dynamic library) updated the
dependency of gvfs, but inverted the comment dependency, causing it to only
be shown if !static - Fix that.
Signed-off-by: Michael Nosthoff <buildroot@heine.tech>
Reviewed-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/gvfs/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/gvfs/Config.in b/package/gvfs/Config.in index 5a6b3e73ec..68ad291436 100644 --- a/package/gvfs/Config.in +++ b/package/gvfs/Config.in @@ -20,4 +20,4 @@ config BR2_PACKAGE_GVFS comment "gvfs needs a toolchain w/ wchar, threads, dynamic library" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ - !BR2_STATIC_LIBS + BR2_STATIC_LIBS |