diff options
author | Adam Duskett <Aduskett@gmail.com> | 2017-04-22 13:18:00 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-01 11:59:26 +0200 |
commit | f998e0d092d90e3513e1e7f06afbef604ed01f76 (patch) | |
tree | d1da65ac6b052b2324f98dc85aaa748b5ba53c63 /package/netcat-openbsd/Config.in | |
parent | 5f14d0363248e8de253b7611e66b67eba45ce959 (diff) | |
download | buildroot-f998e0d092d90e3513e1e7f06afbef604ed01f76.tar.gz buildroot-f998e0d092d90e3513e1e7f06afbef604ed01f76.zip |
package/n*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues
on all of these Config files. This patch cleans up all warnings
related to the ordering in the Config files for packages starting with
the letter n in the package directory.
The appropriate ordering is: type, default, depends on, select, help
See http://nightly.buildroot.org/#_config_files for more information.
Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/netcat-openbsd/Config.in')
-rw-r--r-- | package/netcat-openbsd/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/netcat-openbsd/Config.in b/package/netcat-openbsd/Config.in index 0df997cb22..6df87ec688 100644 --- a/package/netcat-openbsd/Config.in +++ b/package/netcat-openbsd/Config.in @@ -1,10 +1,10 @@ config BR2_PACKAGE_NETCAT_OPENBSD bool "netcat-openbsd" - select BR2_PACKAGE_LIBBSD depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_TOOLCHAIN_USES_GLIBC depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS + select BR2_PACKAGE_LIBBSD help A simple Unix utility which reads and writes data across network connections using TCP or UDP protocol. It is designed to be a |