diff options
author | Russ Cox <rsc@golang.org> | 2009-11-29 20:30:02 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-11-29 20:30:02 -0800 |
commit | ff7c353ffde2c25ca82a83c299846dc698ce5679 (patch) | |
tree | aa9bd1a048fa31586f81916aca5a3a263ba1e698 /src | |
parent | 1952386b699d946f10ec06084e0138160378fe57 (diff) | |
download | golang-ff7c353ffde2c25ca82a83c299846dc698ce5679.tar.gz |
websocket: avoid $GOROOT in case it has spaces
Fixes issue 115.
R=r, ukai, sergio
http://codereview.appspot.com/162057
Diffstat (limited to 'src')
-rw-r--r-- | src/pkg/websocket/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/websocket/Makefile b/src/pkg/websocket/Makefile index ba1b7265d..145d8f429 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 @@ GOFILES=\ server.go\ websocket.go\ -include $(GOROOT)/src/Make.pkg +include ../../Make.pkg |