diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2009-07-25 00:14:15 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2009-07-25 00:18:41 +0200 |
commit | 2845fa66ce8efcf4a48a31e93832325ac1628cf1 (patch) | |
tree | a9f8fd627edaf52287f21bbc9ceaa7a5caad0da9 /package/qt | |
parent | 20d2c70fbda47a6a2eb571da33a9526a0b8c7a1b (diff) | |
download | buildroot-novena-2845fa66ce8efcf4a48a31e93832325ac1628cf1.tar.gz buildroot-novena-2845fa66ce8efcf4a48a31e93832325ac1628cf1.zip |
qt: put the Qt options into a submenu
Put the Qt options into a submenu to make the configuration interface
easier to use. The comment on the dependency on C++ has to be put
before the menuconfig definition, otherwise kconfig gets confused and
doesn't put the suboptions into a submenu.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/qt')
-rw-r--r-- | package/qt/Config.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/qt/Config.in b/package/qt/Config.in index d68c92392..59c691fc0 100644 --- a/package/qt/Config.in +++ b/package/qt/Config.in @@ -1,4 +1,7 @@ -config BR2_PACKAGE_QT +comment "qt requires a toolchain with C++ support enabled" + depends on !BR2_INSTALL_LIBSTDCPP + +menuconfig BR2_PACKAGE_QT bool "Qt" depends on BR2_INSTALL_LIBSTDCPP help @@ -6,9 +9,6 @@ config BR2_PACKAGE_QT http://www.qtsoftware.com/products/platform/qt-for-embedded-linux -comment "qt requires a toolchain with C++ support enabled" - depends on !BR2_INSTALL_LIBSTDCPP - if BR2_PACKAGE_QT config BR2_PACKAGE_QT_DEBUG |