]> Cypherpunks repositories - gostls13.git/commitdiff
websocket: avoid $GOROOT in case it has spaces
authorRuss Cox <rsc@golang.org>
Mon, 30 Nov 2009 04:30:02 +0000 (20:30 -0800)
committerRuss Cox <rsc@golang.org>
Mon, 30 Nov 2009 04:30:02 +0000 (20:30 -0800)
Fixes #115.

R=r, ukai, sergio
https://golang.org/cl/162057

src/pkg/websocket/Makefile

index ba1b7265d212e0aca0321433ab8c42aa0b9da94b..145d8f4291de0ab4bf96c2c5638f5372937eb45d 100644 (file)
@@ -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