diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-21 08:18:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-21 08:18:10 +0000 |
commit | 5086f33ccbde1542b12ec7a67222b656a87065e2 (patch) | |
tree | fc399d052a47e9ce126f5511b9194968f6431152 /toolchain/gdb | |
parent | 338e502682a1cf90b7f454fd03e7d91e4dfe9987 (diff) | |
download | buildroot-novena-5086f33ccbde1542b12ec7a67222b656a87065e2.tar.gz buildroot-novena-5086f33ccbde1542b12ec7a67222b656a87065e2.zip |
use $(CONFIG_UPDATE) instead of noting the issue
Diffstat (limited to 'toolchain/gdb')
-rw-r--r-- | toolchain/gdb/gdb.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/toolchain/gdb/gdb.mk b/toolchain/gdb/gdb.mk index 2b8378f0a..be3a388f0 100644 --- a/toolchain/gdb/gdb.mk +++ b/toolchain/gdb/gdb.mk @@ -35,10 +35,8 @@ ifeq ($(GDB_VERSION),snapshot) ln -sf $(TOOL_BUILD_DIR)/$(shell tar jtf $(DL_DIR)/$(GDB_SOURCE) | head -1 | cut -d"/" -f1) $(GDB_DIR) endif toolchain/patch-kernel.sh $(GDB_DIR) toolchain/gdb/$(GDB_VERSION) \*.patch - # Copy a config.sub from gcc. This is only necessary until - # gdb's config.sub supports <arch>-linux-uclibc tuples. - # Should probably integrate this into the patch. - touch $(GDB_DIR)/.unpacked + $(CONFIG_UPDATE) $(GDB_DIR) + touch $(GDB_DIR)/.unpacked gdb-dirclean: rm -rf $(GDB_DIR) |