diff options
author | hobbs <hobbs> | 2004-12-07 23:15:16 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-12-07 23:15:16 (GMT) |
commit | 71b52332f92f0b1e37bb9e8e8e2036bde70d9ea6 (patch) | |
tree | 9511268cba41e0038c3f26c409a36108e911a4ec | |
parent | 4603db714996884acb6bb72e19289764e571b0fb (diff) | |
download | tcl-71b52332f92f0b1e37bb9e8e8e2036bde70d9ea6.zip tcl-71b52332f92f0b1e37bb9e8e8e2036bde70d9ea6.tar.gz tcl-71b52332f92f0b1e37bb9e8e8e2036bde70d9ea6.tar.bz2 |
add library/tzdata,msgs to dist targetcore_8_5_a2
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | unix/Makefile.in | 8 |
2 files changed, 11 insertions, 3 deletions
@@ -1,12 +1,14 @@ 2004-12-07 Donal K. Fellows <donal.k.fellows@man.ac.uk> + *** 8.5a2 TAGGED FOR RELEASE *** + + * unix/Makefile.in: add library/{tzdata,msgs} to dist target (kbk) + * doc/foreach.n: Adjust tabs to be friendlier to some HTML converters. [Bug 1078760] 2004-12-06 Jeff Hobbs <jeffh@ActiveState.com> - *** 8.5a2 TAGGED FOR RELEASE *** - * unix/tclUnixNotfy.c (NotifierThreadProc): init numFdBits [Bug 1079286] diff --git a/unix/Makefile.in b/unix/Makefile.in index 4b5b64b..b538716 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.157 2004/11/24 00:10:30 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.158 2004/12/07 23:15:19 hobbs Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -1315,6 +1315,12 @@ dist: $(UNIX_DIR)/configure $(UNIX_DIR)/tclConfig.h.in done; mkdir $(DISTDIR)/library/encoding cp -p $(TOP_DIR)/library/encoding/*.enc $(DISTDIR)/library/encoding + mkdir $(DISTDIR)/library/msgs + cp -p $(TOP_DIR)/library/msgs/*.msg $(DISTDIR)/library/msgs + ( cd $(TOP_DIR); \ + find library/tzdata -name CVS -prune -o -type f -print ) \ + | ( cd $(TOP_DIR) ; xargs tar cf - ) \ + | ( cd $(DISTDIR) ; tar xfp - ) mkdir $(DISTDIR)/doc cp -p $(TOP_DIR)/license.terms $(TOP_DIR)/doc/*.[13n] \ $(TOP_DIR)/doc/man.macros $(DISTDIR)/doc |