diff options
author | hobbs <hobbs> | 2001-08-07 20:17:13 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-08-07 20:17:13 (GMT) |
commit | cb98cb3a33b40d3fd34858d45cea7151b1368ea6 (patch) | |
tree | 379980ff68582d458e874c028af650261a243b7e | |
parent | 95ec2a0d78350cc09d6e13c19f137964d8e9918c (diff) | |
download | tk-cb98cb3a33b40d3fd34858d45cea7151b1368ea6.zip tk-cb98cb3a33b40d3fd34858d45cea7151b1368ea6.tar.gz tk-cb98cb3a33b40d3fd34858d45cea7151b1368ea6.tar.bz2 |
* unix/Makefile.in (dist): added {unix,win}/tcl.m4 and
library/msgs/*.msg to dist target. [Bug: #448802]
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | unix/Makefile.in | 14 |
2 files changed, 15 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2001-08-07 Jeff Hobbs <jeffh@ActiveState.com> + + * unix/Makefile.in (dist): added {unix,win}/tcl.m4 and + library/msgs/*.msg to dist target. [Bug: #448802] + 2001-08-06 Jeff Hobbs <jeffh@ActiveState.com> 8.4a3 RELEASE diff --git a/unix/Makefile.in b/unix/Makefile.in index 33267f0..c37526b 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.53 2001/07/11 01:36:41 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.54 2001/08/07 20:17:13 hobbs Exp $ # Current Tk version; used in various names. @@ -1013,8 +1013,8 @@ dist: $(UNIX_DIR)/configure cp -p $(UNIX_DIR)/*.c $(UNIX_DIR)/*.h $(DISTDIR)/unix cp $(TOP_DIR)/license.terms $(UNIX_DIR)/Makefile.in $(DISTDIR)/unix chmod 664 $(DISTDIR)/unix/Makefile.in - cp $(UNIX_DIR)/configure $(UNIX_DIR)/configure.in \ - $(UNIX_DIR)/aclocal.m4 $(UNIX_DIR)/tk.spec \ + cp $(UNIX_DIR)/configure $(UNIX_DIR)/configure.in $(UNIX_DIR)/tk.spec \ + $(UNIX_DIR)/aclocal.m4 $(UNIX_DIR)/tcl.m4 \ $(UNIX_DIR)/tkConfig.sh.in $(TCLDIR)/unix/install-sh \ $(UNIX_DIR)/README $(DISTDIR)/unix chmod 775 $(DISTDIR)/unix/configure $(DISTDIR)/unix/configure.in @@ -1042,7 +1042,7 @@ dist: $(UNIX_DIR)/configure cp $(TOP_DIR)/win/configure.in \ $(TOP_DIR)/win/configure \ $(TOP_DIR)/win/tkConfig.sh.in \ - $(TOP_DIR)/win/aclocal.m4 \ + $(TOP_DIR)/win/aclocal.m4 $(TOP_DIR)/win/tcl.m4 \ $(DISTDIR)/win cp -p $(TOP_DIR)/win/*.c $(TOP_DIR)/win/*.h $(DISTDIR)/win cp -p $(TOP_DIR)/win/*.bat $(DISTDIR)/win @@ -1083,6 +1083,12 @@ dist: $(UNIX_DIR)/configure cp $$i $(DISTDIR)/$$i; \ fi; \ done;) + mkdir $(DISTDIR)/library/msgs + @(cd $(TOP_DIR); for i in library/msgs/*.msg ; do \ + if [ -f $$i ] ; then \ + cp $$i $(DISTDIR)/$$i; \ + fi; \ + done;) mkdir $(DISTDIR)/library/demos cp -pr $(TOP_DIR)/library/demos/*.tcl \ $(TOP_DIR)/library/demos/tclIndex \ |