summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rules/gdb.in12
-rw-r--r--rules/gdb.make4
2 files changed, 8 insertions, 8 deletions
diff --git a/rules/gdb.in b/rules/gdb.in
index 5e899c934..15a3954f1 100644
--- a/rules/gdb.in
+++ b/rules/gdb.in
@@ -3,8 +3,8 @@
menuconfig GDB
tristate
prompt "gdb (the real one) "
- select TERMCAP if GDB__TERMCAP
- select NCURSES if GDB__NCURSES
+ select TERMCAP if GDB_TERMCAP
+ select NCURSES if GDB_NCURSES
help
The GNU Debugger
@@ -16,7 +16,7 @@ menuconfig GDB
if GDB
-config GDB__SHARED
+config GDB_SHARED
bool "build shared"
default y
select LIBC_M
@@ -26,9 +26,9 @@ config GDB__SHARED
choice
prompt "select term library"
- default GDB__TERMCAP
+ default GDB_TERMCAP
- config GDB__TERMCAP
+ config GDB_TERMCAP
bool "termcap"
help
Use termcap as terminal library.
@@ -38,7 +38,7 @@ choice
to terminals in a way independent of the
terminal type.
- config GDB__NCURSES
+ config GDB_NCURSES
bool "ncurses"
help
Use ncurses as terminal library.
diff --git a/rules/gdb.make b/rules/gdb.make
index f4e47c1df..2275f4686 100644
--- a/rules/gdb.make
+++ b/rules/gdb.make
@@ -18,7 +18,7 @@ PACKAGES-$(PTXCONF_GDB) += gdb
#
# Paths and names
#
-GDB_VERSION := $(call remove_quotes,$(PTXCONF_GDB__VERSION))
+GDB_VERSION := $(call remove_quotes,$(PTXCONF_GDB_VERSION))
GDB := gdb-$(GDB_VERSION)
GDB_SUFFIX := tar.bz2
GDB_SOURCE := $(SRCDIR)/$(GDB).$(GDB_SUFFIX)
@@ -56,7 +56,7 @@ GDB_ENV := \
$(CROSS_ENV) \
$(CROSS_ENV_FLAGS_FOR_TARGET)
-ifndef PTXCONF_GDB__SHARED
+ifndef PTXCONF_GDB_SHARED
GDB_MAKEVARS := LDFLAGS=-static
endif