diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-06-30 13:14:25 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-06-30 13:14:25 +0200 |
commit | 5c8b4f846e991773085394fc3dd566dae11a8c4c (patch) | |
tree | 38f87c5ebc87de2a207471bf966339b99f14e240 | |
parent | 4e1b3235c2fc480414c4a2ad59d9db1cafd9d2ae (diff) | |
download | buildroot-5c8b4f846e991773085394fc3dd566dae11a8c4c.tar.gz buildroot-5c8b4f846e991773085394fc3dd566dae11a8c4c.zip |
package/Config.in: hide X.org subsections if XORG7 isn't enabled
(most of) the individual packages depends on BR2_PACKAGE_XORG7, but the
subsection comments do not, so we end up displaying them when Xorg isn't
enabled which isn't very useful:
[ ] X.org X Window System ----
*** X applications ***
*** X libraries and helper libraries ***
*** X window managers ***
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/Config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in index 4c39b124e1..1bf7b1c790 100644 --- a/package/Config.in +++ b/package/Config.in @@ -297,6 +297,8 @@ endif source "package/x11r7/Config.in" comment "X applications" + depends on BR2_PACKAGE_XORG7 + source "package/alsamixergui/Config.in" source "package/apitrace/Config.in" source "package/dillo/Config.in" @@ -322,10 +324,14 @@ comment "X applications" source "package/yad/Config.in" comment "X libraries and helper libraries" + depends on BR2_PACKAGE_XORG7 + source "package/libsexy/Config.in" source "package/x11r7/xkeyboard-config/Config.in" comment "X window managers" + depends on BR2_PACKAGE_XORG7 + source "package/enlightenment/Config.in" source "package/fluxbox/Config.in" source "package/matchbox/Config.in" |