Tk Library Source Code

Artifact [cfb679eaaf]
Login

Artifact cfb679eaafd6eaa65c06df9bc8deb93927c59081:

Attachment "control.diff" to ticket [475846ffff] added by andreas_kupries 2001-11-04 11:58:01.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/tcllib/tcllib/ChangeLog,v
retrieving revision 1.69
diff -u -r1.69 ChangeLog
--- ChangeLog	2001/11/04 04:49:51	1.69
+++ ChangeLog	2001/11/04 04:56:00
@@ -1,3 +1,9 @@
+2001-11-03  Tcl Project  <[email protected]>
+
+	* Makefile.in (install-libraries, dist): Added commands to copy
+	  'tclIndex' files into installation and distribution. This fixes
+	  the remainder of #475846.
+
 2001-11-01  Andreas Kupries  <[email protected]>
 
 	* mime: Fixed bugs #477088, #472009.
Index: Makefile.in
===================================================================
RCS file: /cvsroot/tcllib/tcllib/Makefile.in,v
retrieving revision 1.49
diff -u -r1.49 Makefile.in
--- Makefile.in	2001/08/24 17:01:00	1.49
+++ Makefile.in	2001/11/04 04:56:00
@@ -215,6 +215,9 @@
 		for j in $(srcdir)/modules/$$i/*.tcl ; do \
 		    $(INSTALL_DATA) $$j $(pkglibdir)/$$i ; \
 		done; \
+		if test -f $(srcdir)/modules/$$i/tclIndex ; then \
+		    $(INSTALL_DATA) $(srcdir)/modules/$$i/tclIndex $(pkglibdir)/$$i ; \
+		fi \
 	    fi; \
 	done;
 	$(TCLSH_PROG) `$(CYGPATH) $(srcdir)/mkIndex.tcl` `$(CYGPATH) $(pkglibdir)` tcllib $(VERSION) $(MODULES) smtp
@@ -258,6 +261,7 @@
 	    cp $(srcdir)/modules/$$j/*.html $(srcdir)/tcllib$(VERSION)/$$j ; \
 	    cp $(srcdir)/modules/$$j/*.tcl $(srcdir)/tcllib$(VERSION)/$$j ; \
 	    cp $(srcdir)/modules/$$j/*.test $(srcdir)/tcllib$(VERSION)/$$j ; \
+	    cp $(srcdir)/modules/$$j/tclIndex $(srcdir)/tcllib$(VERSION)/$$j ; \
 	done
 	$(TCLSH_PROG) $(srcdir)/mkIndex.tcl $(srcdir)/tcllib$(VERSION) tcllib $(VERSION) $(MODULES)
 	$(TCLSH_PROG) $(srcdir)/mkInstallScripts.tcl $(srcdir)/tcllib$(VERSION) tcllib $(VERSION) $(MODULES)