From: Alex Brainman Date: Mon, 26 Dec 2011 09:25:31 +0000 (+1100) Subject: misc/windows: add src/pkg/runtime/z* files to installation script X-Git-Tag: weekly.2012-01-15~169 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=83d540244337214922802776eaf5ea4b6f597be5;p=gostls13.git misc/windows: add src/pkg/runtime/z* files to installation script Fixes #2614. R=golang-dev, jdpoirier CC=golang-dev https://golang.org/cl/5505070 --- diff --git a/misc/windows/package.bash b/misc/windows/package.bash index 873db7019c..995e47d0ae 100755 --- a/misc/windows/package.bash +++ b/misc/windows/package.bash @@ -34,9 +34,12 @@ hg clone -r $(hg id -n | sed 's/+//') $(hg root) go rm -rf ./go/.hg ./go/.hgignore ./go/.hgtags -echo "%%%%% Copying pkg and bin %%%%%" 1>&2 +echo "%%%%% Copying pkg, bin and src/pkg/runtime/z* %%%%%" 1>&2 cp -a ../../pkg go/pkg cp -a ../../bin go/bin +cp ../../src/pkg/runtime/z*.c go/src/pkg/runtime/ +cp ../../src/pkg/runtime/z*.go go/src/pkg/runtime/ +cp ../../src/pkg/runtime/z*.h go/src/pkg/runtime/ echo "%%%%% Starting zip packaging %%%%%" 1>&2 7za a -tzip -mx=9 gowin$GOARCH"_"$ver.zip "go/" >/dev/null