From febb18011370e374a2fbeeab8ff3b833b0b02e0a Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 4 Mar 2014 22:56:08 +0000 Subject: [PATCH] Stop using 'zip -k' to construct the Windows source archive. It was intended to ensure that people still working with DOS filename restrictions (or things approximating that, e.g. VFAT) wouldn't have trouble. Those days are surely long gone, and now zip -k is causing its own trouble with the new VS2010/VS2012 project files, which include pairs of filenames that become the same under the zip -k transformation and hence break the source archive build. [originally from svn r10155] --- mksrcarc.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mksrcarc.sh b/mksrcarc.sh index a54414d0..87327df7 100755 --- a/mksrcarc.sh +++ b/mksrcarc.sh @@ -28,6 +28,6 @@ verbosely() { "$@" } -verbosely zip -k -l putty-src.zip $text -verbosely zip -k -l putty-src.zip $bintext -verbosely zip -k putty-src.zip $bin +verbosely zip -l putty-src.zip $text +verbosely zip -l putty-src.zip $bintext +verbosely zip putty-src.zip $bin