diff options
author | Ryan Barnett <ryan.barnett@rockwellcollins.com> | 2015-07-13 15:38:27 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-13 22:38:47 +0200 |
commit | 01d389191f461dc170b2dff7538520f83e33923d (patch) | |
tree | 655434d3b4516c470b096e23cede4e734a452b7a | |
parent | d3c8da4dd4a0094f7ffd337a1d874d3deae77693 (diff) | |
download | buildroot-01d389191f461dc170b2dff7538520f83e33923d.tar.gz buildroot-01d389191f461dc170b2dff7538520f83e33923d.zip |
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 <ryan.barnett@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/ntfs-3g/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |