From: Rodrigo Rebello Date: Wed, 12 Apr 2017 14:23:55 +0000 (-0300) Subject: irssi: fix attributes ordering in Config.in X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=deafcccdd41094b92a5e20550ac187d9b691920f;p=buildroot.git irssi: fix attributes ordering in Config.in 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 Signed-off-by: Thomas Petazzoni --- diff --git a/package/irssi/Config.in b/package/irssi/Config.in index 2cdd06c87c..6361cff31c 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.