diff --git a/kitsh/buildsrc/kitsh-0.0/installvfs.tcl b/kitsh/buildsrc/kitsh-0.0/installvfs.tcl index c3e83f8..22c57c2 100644 --- a/kitsh/buildsrc/kitsh-0.0/installvfs.tcl +++ b/kitsh/buildsrc/kitsh-0.0/installvfs.tcl @@ -37,6 +37,9 @@ proc copy_file {srcfile destfile} { set ifd [open $srcfile r] set ofd [open $destfile w] + # Force tcl files to have lf line endings inside tclkit. + fconfigure $ofd -translation lf + set ret [fcopy $ifd $ofd] close $ofd