diff options
| author | Adam Duskett <Aduskett@gmail.com> | 2017-04-22 13:17:54 -0400 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-01 11:32:04 +0200 |
| commit | 791c5db7439ed21044db2106b0955e5a859a7b83 (patch) | |
| tree | b3dc95a9fe869f671e9aa7a72cffc190eba5494e /package/gdb/Config.in | |
| parent | 1ad03d5481ec3329bb9bc73799398737faddd386 (diff) | |
| download | buildroot-791c5db7439ed21044db2106b0955e5a859a7b83.tar.gz buildroot-791c5db7439ed21044db2106b0955e5a859a7b83.zip | |
packages/g*/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 g 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/gdb/Config.in')
| -rw-r--r-- | package/gdb/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/gdb/Config.in b/package/gdb/Config.in index 809e02d076..026cdeaa80 100644 --- a/package/gdb/Config.in +++ b/package/gdb/Config.in @@ -4,13 +4,13 @@ comment "gdb/gdbserver needs a toolchain w/ threads, threads debug" config BR2_PACKAGE_GDB bool "gdb" + depends on BR2_TOOLCHAIN_HAS_THREADS && BR2_TOOLCHAIN_HAS_THREADS_DEBUG + depends on !BR2_nios2 && !BR2_bfin # When the external toolchain gdbserver is copied to the # target, we don't allow building a separate gdbserver. The # one from the external toolchain should be used. select BR2_PACKAGE_GDB_SERVER if \ (!BR2_PACKAGE_GDB_DEBUGGER && !BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY) - depends on BR2_TOOLCHAIN_HAS_THREADS && BR2_TOOLCHAIN_HAS_THREADS_DEBUG - depends on !BR2_nios2 && !BR2_bfin help GDB, the GNU Project debugger, allows you to see what is going on `inside' another program while it executes -- or @@ -38,9 +38,9 @@ config BR2_PACKAGE_GDB_SERVER config BR2_PACKAGE_GDB_DEBUGGER bool "full debugger" - select BR2_PACKAGE_NCURSES depends on BR2_USE_WCHAR depends on !BR2_sh && !BR2_microblaze + select BR2_PACKAGE_NCURSES comment "full gdb on target needs a toolchain w/ wchar" depends on !BR2_sh && !BR2_microblaze |

