From: Thomas Petazzoni Date: Fri, 26 Oct 2018 19:28:31 +0000 (+0200) Subject: mysql: properly order "depends on" vs. bool X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cbf62fc5692cc04a2f721260d5e7f8a2558b4bb1;p=buildroot.git mysql: properly order "depends on" vs. bool This fixes a check-package warning introduced by commit 19df27ed03b33cd86c971afb355091161972851f ("package/mariadb: add option to disable build of embedded server") Fixes: package/mysql/Config.in:59: attributes order: type, default, depends on, select, help (http://nightly.buildroot.org/#_config_files) Signed-off-by: Thomas Petazzoni --- diff --git a/package/mysql/Config.in b/package/mysql/Config.in index f7f7f4b8eb..30a82cc91b 100644 --- a/package/mysql/Config.in +++ b/package/mysql/Config.in @@ -55,8 +55,8 @@ config BR2_PACKAGE_MARIADB_SERVER Install the mariadb server on the target. config BR2_PACKAGE_MARIADB_SERVER_EMBEDDED - depends on BR2_PACKAGE_MARIADB_SERVER bool "mariadb embedded server" + depends on BR2_PACKAGE_MARIADB_SERVER help Install the mariadb embedded server on the target.