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 /unix | |
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
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
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 |