]> Cypherpunks repositories - gostls13.git/commitdiff
misc/windows: add src/pkg/runtime/z* files to installation script
authorAlex Brainman <alex.brainman@gmail.com>
Mon, 26 Dec 2011 09:25:31 +0000 (20:25 +1100)
committerAlex Brainman <alex.brainman@gmail.com>
Mon, 26 Dec 2011 09:25:31 +0000 (20:25 +1100)
Fixes #2614.

R=golang-dev, jdpoirier
CC=golang-dev
https://golang.org/cl/5505070

misc/windows/package.bash

index 873db7019c7183f61d576470c515aad5230f2846..995e47d0aebfcec4983daa415e9b8d0b9c69264b 100755 (executable)
@@ -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