diff options
| author | Wei Guangjing <vcc.163@gmail.com> | 2010-12-13 16:41:02 +1100 |
|---|---|---|
| committer | Alex Brainman <alex.brainman@gmail.com> | 2010-12-13 16:41:02 +1100 |
| commit | e04ef7769ec0a4fde622bc64585fa0681f384310 (patch) | |
| tree | dee8a92dc0d5d4a521cb0e8afe1634152a200558 /src/pkg/Makefile | |
| parent | 1f6b6ca9ba5f9163d154f1fc62df3d989074d53a (diff) | |
| download | go-e04ef7769ec0a4fde622bc64585fa0681f384310.tar.xz | |
Fix windows build.
R=brainman, rsc
CC=golang-dev
https://golang.org/cl/3533041
Diffstat (limited to 'src/pkg/Makefile')
| -rw-r--r-- | src/pkg/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile index 0481ff1e65..1e3f7e0622 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -147,6 +147,10 @@ DIRS+=\ endif +ifeq ($(GOOS),windows) +DIRS:=$(filter-out runtime/cgo,$(DIRS)) +endif + NOTEST=\ debug/proc\ exp/draw/x11\ |
