From 7be239c03f7b5366ad0c4c118955492c1529861c Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 23 Jan 2005 11:09:40 +0000 Subject: Patch from acmay: http://bugs.uclibc.org/view.php?id=50 0000050: gdb_server and gdb_client fixes and split Here is a patch with 2 issues. gdbserver does not depend on ncurses (just the full gdb needs it) Split out gdb client config option, to be separate from gdbserver. If you build gdb client for the host once it does not need to be rebuilt when the rest of libs change. So I build it and save it off. --- toolchain/gdb/Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'toolchain/gdb/Makefile.in') diff --git a/toolchain/gdb/Makefile.in b/toolchain/gdb/Makefile.in index 51a2ddb3d..50828d86f 100644 --- a/toolchain/gdb/Makefile.in +++ b/toolchain/gdb/Makefile.in @@ -6,5 +6,9 @@ TARGETS+=gdb_target endif ifeq ($(strip $(BR2_PACKAGE_GDB_SERVER)),y) -TARGETS+=gdbserver gdbclient +TARGETS+=gdbserver +endif + +ifeq ($(strip $(BR2_PACKAGE_GDB_CLIENT)),y) +TARGETS+=gdbclient endif -- cgit v1.2.3