From: Ryan Barnett Date: Mon, 13 Jul 2015 20:38:27 +0000 (-0500) Subject: ntfs-3g: fix incorrect comment dependency X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=01d389191f461dc170b2dff7538520f83e33923d;p=buildroot.git ntfs-3g: fix incorrect comment dependency The comment for ntfs-3g displays even when the package has met its necessary dependencies. Signed-off-by: Ryan Barnett Signed-off-by: Thomas Petazzoni --- diff --git a/package/ntfs-3g/Config.in b/package/ntfs-3g/Config.in index a860498d64..d6d1481ad2 100644 --- a/package/ntfs-3g/Config.in +++ b/package/ntfs-3g/Config.in @@ -32,4 +32,4 @@ endif comment "ntfs-3g 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) + depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS