1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 09:27:59 +00:00

Remove a bashism in mksrcarc.sh, without which bob builds fail on

Ubuntu (whose /bin/sh is not bash).

[originally from svn r9585]
This commit is contained in:
Simon Tatham 2012-07-22 19:48:39 +00:00
parent 3d3052f680
commit acf8a5385d

View File

@ -20,5 +20,5 @@ bintext=testdata/*.txt
bin=`{ ls -1 windows/*.ico windows/putty.iss windows/website.url macosx/*.icns; \
find . -name '*.dsp' -print -o -name '*.dsw' -print; }`
zip -k -l putty-src.zip $text > /dev/null
zip -k -l putty-src.zip $bintext >& /dev/null
zip -k -l putty-src.zip $bintext > /dev/null 2>&1
zip -k putty-src.zip $bin > /dev/null