diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/Makefile.in | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d3d1e9f..4a4de5e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2002-08-14 Keith Seitz <keiths@redhat.com> + * Makefile.in (install-gdbtk): Create insight plugin directory. + Install plugins.tcl file. + +2002-08-14 Keith Seitz <keiths@redhat.com> + * configure.in: Move SUBDIRS to near top of the file so that --enable options may add things to it. If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 8e2eee5..f15aa26 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1502,6 +1502,8 @@ fork-child.o: fork-child.c $(gdb_wait_h) $(defs_h) $(gdbcore_h) \ install-gdbtk: $(SHELL) $(srcdir)/../mkinstalldirs $(GDBTK_LIBRARY) ; \ + $(SHELL) $(srcdir)/../mkinstalldirs $(libdir)/insight$(GDBTK_VERSION) ; \ + $(INSTALL_DATA) $(srcdir)/gdbtk/plugins/plugins.tcl $(libdir)/insight$(GDBTK_VERSION)/plugins.tcl ; \ $(SHELL) $(srcdir)/../mkinstalldirs \ $(GDBTK_LIBRARY)/images \ $(GDBTK_LIBRARY)/images2 ; \ |