aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/Makefile
diff options
context:
space:
mode:
authorWei Guangjing <vcc.163@gmail.com>2010-12-13 16:41:02 +1100
committerAlex Brainman <alex.brainman@gmail.com>2010-12-13 16:41:02 +1100
commite04ef7769ec0a4fde622bc64585fa0681f384310 (patch)
treedee8a92dc0d5d4a521cb0e8afe1634152a200558 /src/pkg/Makefile
parent1f6b6ca9ba5f9163d154f1fc62df3d989074d53a (diff)
downloadgo-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/Makefile4
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\