diff options
| author | Adam Duskett <Aduskett@gmail.com> | 2017-04-22 13:17:48 -0400 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-04-29 17:17:02 +0200 |
| commit | 7b493e411f5b4473b275aa125d85386a5d1127a9 (patch) | |
| tree | d8c88b4c178a0fe915092944b60bfd6ee4156e18 /package/agentpp | |
| parent | 49d907e39a4a16c75a9c23aa445dcb9996c55472 (diff) | |
| download | buildroot-7b493e411f5b4473b275aa125d85386a5d1127a9.tar.gz buildroot-7b493e411f5b4473b275aa125d85386a5d1127a9.zip | |
package/a*/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 a 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/agentpp')
| -rw-r--r-- | package/agentpp/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/agentpp/Config.in b/package/agentpp/Config.in index 4b70a1a738..e591fb5f3c 100644 --- a/package/agentpp/Config.in +++ b/package/agentpp/Config.in @@ -1,9 +1,9 @@ config BR2_PACKAGE_AGENTPP bool "agent++" - select BR2_PACKAGE_SNMPPP depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS # snmp++ depends on !BR2_STATIC_LIBS # snmp++ + select BR2_PACKAGE_SNMPPP help AGENT++ is a set of C++ classes which provides a complete protocol engine and dispatch table for the development of SNMP agents. |

