From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rodrigo Rebello Date: Wed, 12 Apr 2017 11:23:55 -0300 Subject: [Buildroot] [PATCH] irssi: fix attributes ordering in Config.in Message-ID: <20170412142355.4538-1-rprebello@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net 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 --- package/irssi/Config.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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. -- 2.11.0