This is the mail archive of the insight@sources.redhat.com mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix tclIndex generation


Hi,

Ok, it's been a long time coming, and I'm sure there are better things to
do than fix this, but, well, enough is enough.

Along with the patch that I've submitted to Ian for Itcl, this allows me
to generate a proper tclIndex file for ourselves.

In order to use this, you will need to have an install from
an --enable-shared toolchain about.

Keith

ChangeLog
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".

Patch
Index: library/Makefile
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/library/Makefile,v
retrieving revision 1.2
diff -p -r1.2 Makefile
*** library/Makefile	2001/01/03 05:34:04	1.2
--- library/Makefile	2002/01/11 04:20:51
***************
*** 1,10 ****

  TCL := $(wildcard *.tcl *.itcl *.ith *.itb)

! ITCL_SH = itclsh3.0

  tclIndex: $(TCL) Makefile
! 	echo "auto_mkindex `pwd` $(TCL)" | $(ITCL_SH)

  tags: TAGS
  TAGS: $(TCL)
--- 1,10 ----

  TCL := $(wildcard *.tcl *.itcl *.ith *.itb)

! TCLSH = tclsh8.3

  tclIndex: $(TCL) Makefile
! 	echo "package require Itcl; auto_mkindex `pwd` $(TCL)" | $(TCLSH)

  tags: TAGS
  TAGS: $(TCL)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]