diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-06-30 13:18:35 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-06-30 13:18:35 +0200 |
commit | beddc22a7dbb91fc782759067372f711227d054c (patch) | |
tree | 2c6391c6a90a2c655bf543a77497da6ecaaa0522 | |
parent | 5c8b4f846e991773085394fc3dd566dae11a8c4c (diff) | |
download | buildroot-beddc22a7dbb91fc782759067372f711227d054c.tar.gz buildroot-beddc22a7dbb91fc782759067372f711227d054c.zip |
pcmanfm: don't show comment about missing X.org
The comments are meant for toolchain dependencies, not packages. Adjust the
logic to match what we do for other X11 applications.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/pcmanfm/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/pcmanfm/Config.in b/package/pcmanfm/Config.in index 149a595448..ac68188a86 100644 --- a/package/pcmanfm/Config.in +++ b/package/pcmanfm/Config.in @@ -17,8 +17,9 @@ config BR2_PACKAGE_PCMANFM http://wiki.lxde.org/en/PCManFM -comment "pcmanfm needs X.org and a toolchain w/ wchar, threads, C++" +comment "pcmanfm needs a toolchain w/ wchar, threads, C++" depends on BR2_USE_MMU + depends on BR2_PACKAGE_XORG7 depends on BR2_TOOLCHAIN_HAS_SYNC_4 depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \ - !BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_XORG7 + !BR2_TOOLCHAIN_HAS_THREADS |