1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Revert my LF->CR change following Owen's comment that it actually

breaks netatalk-based setups (which _swap_ LF and CR). Instead,
setfile.sh (which I have to run _anyway_ on OS X) copies mkputty.mpw
to mk.mpw and then makes that CR-based.

[originally from svn r5271]
This commit is contained in:
Simon Tatham 2005-02-07 20:24:13 +00:00
parent 162398e55e
commit ba793c905f
2 changed files with 19 additions and 2 deletions

View File

@ -1 +1,15 @@
# $Id$ Set makefile Makefile.mpw # Run Make, then execute its output. Echo "# `Date -t` ----- Analyzing dependencies." Begin Echo "Set Echo 1" Make {"Parameters"} -f "{makefile}" End > make.out Echo "# `Date -t` ----- Executing build commands." make.out Delete make.out Echo "# `Date -t` ----- Done."
# $Id$
Set makefile Makefile.mpw
# Run Make, then execute its output.
Echo "# `Date -t` ----- Analyzing dependencies."
Begin
Echo "Set Echo 1"
Make {"Parameters"} -f "{makefile}"
End > make.out
Echo "# `Date -t` ----- Executing build commands."
make.out
Delete make.out
Echo "# `Date -t` ----- Done."

View File

@ -19,4 +19,7 @@ fi
# Now we can assume we're in the main PuTTY source dir.
find . -name .svn -prune -o -name '*.[chr]' -exec $SETFILE -t TEXT {} \;
$SETFILE -t TEXT mac/mkputty.mpw
# CR-ise mkputty.mpw and set the new version to TEXT.
tr '\n' '\r' < mac/mkputty.mpw > mac/mk.mpw
$SETFILE -t TEXT mac/mk.mpw