From 83d540244337214922802776eaf5ea4b6f597be5 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Mon, 26 Dec 2011 20:25:31 +1100 Subject: [PATCH] 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 --- misc/windows/package.bash | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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