irssi: fix attributes ordering in Config.in
authorRodrigo Rebello <rprebello@gmail.com>
Wed, 12 Apr 2017 14:23:55 +0000 (11:23 -0300)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 12 Apr 2017 19:02:30 +0000 (21:02 +0200)
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>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/irssi/Config.in

index 2cdd06c87c0525204e3fa73faac19ca446018a5e..6361cff31cc10ff4bdbac2cc53fd18b13d839884 100644 (file)
@@ -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.