From: Russ Cox Date: Mon, 30 Nov 2009 04:30:02 +0000 (-0800) Subject: websocket: avoid $GOROOT in case it has spaces X-Git-Tag: weekly.2009-12-07~115 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=be98bc488eb0a53700bf8bf8134d4913b71b80d0;p=gostls13.git 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 ba1b7265d2..145d8f4291 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