diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-02-11 21:32:35 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-02-11 21:32:35 +0000 |
commit | 601b1a1ad18b4fc832a82278c065ca353d5be8bf (patch) | |
tree | d5498de390386705d7ab2d810f6bf4edb1eda42f | |
parent | dab038a04a8222eb3fc101c3c347f2b6ca755f3c (diff) | |
download | buildroot-novena-601b1a1ad18b4fc832a82278c065ca353d5be8bf.tar.gz buildroot-novena-601b1a1ad18b4fc832a82278c065ca353d5be8bf.zip |
cleanup using a variable before it was defined
-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 e8212e93f..0ab43aeeb 100644 --- a/toolchain/gdb/gdb.mk +++ b/toolchain/gdb/gdb.mk @@ -3,7 +3,8 @@ # gdb # ###################################################################### -GDB_VERSION:=$(strip $(GDB_VERSION)) +GDB_VERSION:=$(strip $(subst ",, $(BR2_GDB_VERSION))) +#" GDB_SITE:=http://ftp.gnu.org/gnu/gdb @@ -192,9 +193,6 @@ gdbclient-dirclean: # Toplevel Makefile options # ############################################################# -GDB_VERSION:=$(strip $(subst ",, $(BR2_GDB_VERSION))) -#" - ifeq ($(strip $(BR2_PACKAGE_GDB)),y) TARGETS+=gdb_target endif |