From: Markos Chandras Date: Thu, 15 Aug 2013 13:39:06 +0000 (+0100) Subject: webkit: Fix comment dependency for BR2_PACKAGE_LIBGTK2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bdb0498b2cbbbda180f144bc6431cadaed3c870d;p=buildroot.git webkit: Fix comment dependency for BR2_PACKAGE_LIBGTK2 The comment should only be displayed if BR2_PACKAGE_LIBGTK2 is not selected. Signed-off-by: Markos Chandras Signed-off-by: Thomas Petazzoni --- diff --git a/package/webkit/Config.in b/package/webkit/Config.in index 789e427f31..44a208a411 100644 --- a/package/webkit/Config.in +++ b/package/webkit/Config.in @@ -26,5 +26,5 @@ config BR2_PACKAGE_WEBKIT http://webkit.org/ comment "webkit requires libgtk2 and a toolchain with C++, WCHAR, threading support" - depends on BR2_PACKAGE_LIBGTK2 || !BR2_INSTALL_LIBSTDCPP || \ + depends on !BR2_PACKAGE_LIBGTK2 || !BR2_INSTALL_LIBSTDCPP || \ !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS