diff options
author | Keith Seitz <keiths@redhat.com> | 2002-01-11 04:24:39 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2002-01-11 04:24:39 +0000 |
commit | 6bc9e9a0e773862d4c5a1121617f40e43d7d02e7 (patch) | |
tree | 309bf0641c08484a54b3e371c4ec47a173d37372 /gdb/gdbtk | |
parent | d2b77a821a61ba4b23a615e02477917200eb915e (diff) | |
download | gdb-6bc9e9a0e773862d4c5a1121617f40e43d7d02e7.tar.gz |
* library/Makefile (ITCL_SH): Renamed to "ITCLSH".
(tclIndex): We no longer have an Itcl shell, so we must use
"package require Itcl".
Diffstat (limited to 'gdb/gdbtk')
-rw-r--r-- | gdb/gdbtk/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/gdbtk/library/Makefile | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gdb/gdbtk/ChangeLog b/gdb/gdbtk/ChangeLog index d42ed0296b8..4530529f033 100644 --- a/gdb/gdbtk/ChangeLog +++ b/gdb/gdbtk/ChangeLog @@ -1,3 +1,9 @@ +2002-01-10 Keith Seitz <keiths@redhat.com> + + * library/Makefile (ITCL_SH): Renamed to "ITCLSH". + (tclIndex): We no longer have an Itcl shell, so we must use + "package require Itcl". + 2002-01-08 Keith Seitz <keiths@redhat.com> * generic/gdbtk-cmds.c (gdb_find_file_command): If the symtab diff --git a/gdb/gdbtk/library/Makefile b/gdb/gdbtk/library/Makefile index 029dffe9186..0a9319743ca 100644 --- a/gdb/gdbtk/library/Makefile +++ b/gdb/gdbtk/library/Makefile @@ -1,10 +1,10 @@ TCL := $(wildcard *.tcl *.itcl *.ith *.itb) -ITCL_SH = itclsh3.0 +TCLSH = tclsh8.3 tclIndex: $(TCL) Makefile - echo "auto_mkindex `pwd` $(TCL)" | $(ITCL_SH) + echo "package require Itcl; auto_mkindex `pwd` $(TCL)" | $(TCLSH) tags: TAGS TAGS: $(TCL) |