diff options
author | hobbs <hobbs> | 2001-11-20 10:15:06 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-11-20 10:15:06 (GMT) |
commit | cc9ab9d07a41e1b6dacb17935cf3c504c7f37bd8 (patch) | |
tree | 1a4871a876a13bf1b592ba2e1949ebc452237cf9 /unix/Makefile.in | |
parent | efc5cb86481e5b94396404ff21921ca044118de8 (diff) | |
download | tcl-cc9ab9d07a41e1b6dacb17935cf3c504c7f37bd8.zip tcl-cc9ab9d07a41e1b6dacb17935cf3c504c7f37bd8.tar.gz tcl-cc9ab9d07a41e1b6dacb17935cf3c504c7f37bd8.tar.bz2 |
* tools/eolFix.tcl (new-file):
* unix/Makefile.in: added EOL correction for Windows bat files to
dist target. [Bug #219409] (davygrvy)
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index f7400ab..17fbffd 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.86 2001/11/11 03:16:10 mdejong Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.87 2001/11/20 10:15:06 hobbs Exp $ VERSION = @TCL_VERSION@ @@ -1211,8 +1211,10 @@ dist: $(UNIX_DIR)/configure mklinks $(TOP_DIR)/win/*.ico $(TOP_DIR)/win/*.rc \ $(DISTDIR)/win cp -p $(TOP_DIR)/win/*.bat $(DISTDIR)/win + $(TCL_EXE) $(TOOL_DIR)/eolFix.tcl -crlf $(DISTDIR)/win/*.bat cp -p $(TOP_DIR)/win/makefile.* $(DISTDIR)/win cp -p $(TOP_DIR)/win/tcl.hpj.in $(DISTDIR)/win + $(TCL_EXE) $(TOOL_DIR)/eolFix.tcl -crlf $(DISTDIR)/win/tcl.hpj.in cp -p $(TOP_DIR)/win/README $(DISTDIR)/win cp -p $(TOP_DIR)/license.terms $(DISTDIR)/win mkdir $(DISTDIR)/mac @@ -1235,6 +1237,8 @@ dist: $(UNIX_DIR)/configure mklinks $(TOP_DIR)/tools/tcl.wse.in $(TOP_DIR)/tools/*.bmp \ $(TOP_DIR)/tools/tcl.hpj.in \ $(DISTDIR)/tools + $(TCL_EXE) $(TOOL_DIR)/eolFix.tcl -crlf $(DISTDIR)/win/tcl.hpj.in \ + $(TOP_DIR)/tools/tcl.wse.in # # The following target can only be used for non-patch releases. Use |