diff options
author | Rodrigo Rebello <rprebello@gmail.com> | 2017-04-12 11:23:55 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-04-12 21:02:30 +0200 |
commit | deafcccdd41094b92a5e20550ac187d9b691920f (patch) | |
tree | c0007e0cc6704fe57f589b010ad73cece953e9fe | |
parent | def937d963b13ad1e0f2210c3d137c245fc638b5 (diff) | |
download | buildroot-deafcccdd41094b92a5e20550ac187d9b691920f.tar.gz buildroot-deafcccdd41094b92a5e20550ac187d9b691920f.zip |
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 <rprebello@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/irssi/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
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. |