diff options
author | Jonas Zaddach <jzaddach@sourcefire.com> | 2018-04-10 12:37:22 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-27 23:09:17 +0200 |
commit | fa5ca6974d2504dccc35f43dcabcf30f076d8685 (patch) | |
tree | ffaefa9b3b0e22a6d2ac4ed498fdd046b2dc509b | |
parent | ea7f7aaa6dc4329fc46b09229efafe2dd3896205 (diff) | |
download | buildroot-fa5ca6974d2504dccc35f43dcabcf30f076d8685.tar.gz buildroot-fa5ca6974d2504dccc35f43dcabcf30f076d8685.zip |
package/gdb: don't remove support files if python chosen
If one wants to use GDB with python support on the target, you need the support
files installed by GDB. These get usually deleted to save some space, so I just
wrapped the Makefile code deleting them in a conditional block depending on if
python support is active or not.
Signed-off-by: Jonas Zaddach <jzaddach@cisco.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
[Thomas:
- use positive logic "if python is disabled"
- put the comment inside the condition, as suggested by Arnout]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/gdb/gdb.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/gdb/gdb.mk b/package/gdb/gdb.mk index ca71349cb3..215f473cc0 100644 --- a/package/gdb/gdb.mk +++ b/package/gdb/gdb.mk @@ -164,6 +164,7 @@ else GDB_CONF_OPTS += --without-zlib endif +ifeq ($(BR2_PACKAGE_GDB_PYTHON),) # This removes some unneeded Python scripts and XML target description # files that are not useful for a normal usage of the debugger. define GDB_REMOVE_UNNEEDED_FILES @@ -171,6 +172,7 @@ define GDB_REMOVE_UNNEEDED_FILES endef GDB_POST_INSTALL_TARGET_HOOKS += GDB_REMOVE_UNNEEDED_FILES +endif # This installs the gdbserver somewhere into the $(HOST_DIR) so that # it becomes an integral part of the SDK, if the toolchain generated |