diff mbox

irssi: fix attributes ordering in Config.in

Message ID 20170412142355.4538-1-rprebello@gmail.com
State Accepted
Headers show

Commit Message

Rodrigo Rebello April 12, 2017, 2:23 p.m. UTC
According to the Buildroot convention, 'depends on' attributes shall
come before 'select' ones in Kconfig files.

Detected by check-package.

Signed-off-by: Rodrigo Rebello <rprebello@gmail.com>
---
 package/irssi/Config.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Thomas Petazzoni April 12, 2017, 7:02 p.m. UTC | #1
Hello,

On Wed, 12 Apr 2017 11:23:55 -0300, Rodrigo Rebello wrote:
> According to the Buildroot convention, 'depends on' attributes shall
> come before 'select' ones in Kconfig files.
> 
> Detected by check-package.
> 
> Signed-off-by: Rodrigo Rebello <rprebello@gmail.com>
> ---
>  package/irssi/Config.in | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Applied to master, thanks.

Thomas
diff mbox

Patch

diff --git a/package/irssi/Config.in b/package/irssi/Config.in
index 2cdd06c87..6361cff31 100644
--- a/package/irssi/Config.in
+++ b/package/irssi/Config.in
@@ -1,11 +1,11 @@ 
 config BR2_PACKAGE_IRSSI
 	bool "irssi"
-	select BR2_PACKAGE_LIBGLIB2
-	select BR2_PACKAGE_NCURSES
-	select BR2_PACKAGE_OPENSSL
 	depends on BR2_USE_WCHAR # libglib2
 	depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
 	depends on BR2_USE_MMU # fork()
+	select BR2_PACKAGE_LIBGLIB2
+	select BR2_PACKAGE_NCURSES
+	select BR2_PACKAGE_OPENSSL
 	help
 	  Irssi is a terminal based IRC client for UNIX systems.