diff options
| author | Adam Duskett <Aduskett@gmail.com> | 2017-04-22 13:18:03 -0400 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-02 14:34:19 +0200 |
| commit | cf1c12bdba037b4e28e2d7fcef0e653a45016408 (patch) | |
| tree | 576e6f840e3c3d60772dd2f43421c48014f8f7c0 /package/qt/Config.sql.in | |
| parent | 0d18d1d9c0dd8173eee918b30761548c19b6bfdc (diff) | |
| download | buildroot-cf1c12bdba037b4e28e2d7fcef0e653a45016408.tar.gz buildroot-cf1c12bdba037b4e28e2d7fcef0e653a45016408.zip | |
package/q*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues
on all of these Config files. This patch cleans up all warnings
related to the ordering in the Config files for packages starting with
the letter q in the package directory.
The appropriate ordering is: type, default, depends on, select, help
See http://nightly.buildroot.org/#_config_files for more information.
Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/qt/Config.sql.in')
| -rw-r--r-- | package/qt/Config.sql.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/qt/Config.sql.in b/package/qt/Config.sql.in index 5bd63d27a0..6d39bb974a 100644 --- a/package/qt/Config.sql.in +++ b/package/qt/Config.sql.in @@ -6,10 +6,10 @@ menuconfig BR2_PACKAGE_QT_SQL_MODULE if BR2_PACKAGE_QT_SQL_MODULE config BR2_PACKAGE_QT_MYSQL bool "MySQL Driver" + depends on BR2_USE_MMU # mysql select BR2_PACKAGE_MYSQL select BR2_PACKAGE_NCURSES select BR2_PACKAGE_READLINE - depends on BR2_USE_MMU # mysql help Build MySQL driver If unsure, say n. @@ -23,8 +23,8 @@ config BR2_PACKAGE_QT_ODBC config BR2_PACKAGE_QT_PSQL bool "PostgreSQL Driver" - select BR2_PACKAGE_POSTGRESQL depends on !BR2_STATIC_LIBS + select BR2_PACKAGE_POSTGRESQL help Build PostgreSQL driver If unsure, say n. |

