commit | be98bc488eb0a53700bf8bf8134d4913b71b80d0 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Sun Nov 29 20:30:02 2009 -0800 |
committer | Russ Cox <rsc@golang.org> | Sun Nov 29 20:30:02 2009 -0800 |
tree | 192d7f2ccfcd21f897f5b79f355598666d27de89 | |
parent | 46892656c7438115f1c48c5c18c517f3f7b987f9 [diff] [blame] |
websocket: avoid $GOROOT in case it has spaces Fixes #115. R=r, ukai, sergio https://golang.org/cl/162057
diff --git a/src/pkg/websocket/Makefile b/src/pkg/websocket/Makefile index ba1b726..145d8f4 100644 --- a/src/pkg/websocket/Makefile +++ b/src/pkg/websocket/Makefile
@@ -1,4 +1,4 @@ -include $(GOROOT)/src/Make.$(GOARCH) +include ../../Make.$(GOARCH) TARG=websocket GOFILES=\ @@ -6,4 +6,4 @@ server.go\ websocket.go\ -include $(GOROOT)/src/Make.pkg +include ../../Make.pkg