diff options
author | Roger Dingledine <arma@torproject.org> | 2010-04-20 20:17:28 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2010-04-20 20:17:28 -0400 |
commit | 7231e289dd93d6aa3d17c46fd8ae44e70b365980 (patch) | |
tree | 5529a3d875d8f5512054ce3d4b2dde78a660a2b3 /contrib/package_nsis-mingw.sh | |
parent | 92a6ae2b8d89fced574efed125275ebf501d09b6 (diff) | |
download | tor-7231e289dd93d6aa3d17c46fd8ae44e70b365980.tar.gz tor-7231e289dd93d6aa3d17c46fd8ae44e70b365980.zip |
windows packaging cleanups from phobos
Diffstat (limited to 'contrib/package_nsis-mingw.sh')
-rw-r--r-- | contrib/package_nsis-mingw.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/contrib/package_nsis-mingw.sh b/contrib/package_nsis-mingw.sh index 54f0ce228a..59811f4f11 100644 --- a/contrib/package_nsis-mingw.sh +++ b/contrib/package_nsis-mingw.sh @@ -58,6 +58,7 @@ cp src/or/tor.exe win_tmp/bin/ cp src/tools/tor-resolve.exe win_tmp/bin/ cp contrib/tor.ico win_tmp/bin/ cp src/config/geoip win_tmp/bin/ +strip win_tmp/bin/*.exe # There is no man2html in mingw. # Maybe we should add this into make dist instead. @@ -73,17 +74,15 @@ clean_localstatedir() { perl -pe 's/^\n$/\r\n/mg; s/([^\r])\n$/\1\r\n/mg; s{\@LOCALSTATEDIR\@/(lib|log)/tor/}{C:\\Documents and Settings\\Application Data\\Tor\\}' $1 >$2 } -for fn in address-spec.txt control-spec.txt control-spec-v0.txt dir-spec.txt dir-spec-v1.txt path-spec.txt rend-spec.txt socks-extensions.txt tor-spec.txt version-spec.txt; do +for fn in address-spec.txt bridges-spec.txt control-spec.txt dir-spec.txt path-spec.txt rend-spec.txt socks-extensions.txt tor-spec.txt version-spec.txt; do clean_newlines doc/spec/$fn win_tmp/doc/spec/$fn done -cp doc/design-paper/tor-design.pdf win_tmp/doc/design-paper/tor-design.pdf - -for fn in HACKING tor-reference.html tor-resolve.html; do +for fn in HACKING tor-gencert.html tor.html torify.html tor-resolve.html; do clean_newlines doc/$fn win_tmp/doc/$fn done -for fn in README AUTHORS ChangeLog LICENSE; do +for fn in README ChangeLog LICENSE; do clean_newlines $fn win_tmp/$fn done |