Commit 46892656 authored by Sergio Luis O. B. Correia's avatar Sergio Luis O. B. Correia Committed by Russ Cox

crypto/md4, exp/draw/x11: fix makefile to build when GOROOT has whitespaces

this is the exact same thing issue #115 is about. fix makefiles to use relative
path to work in the case we have whitespaces as part of GOROOT.

R=rsc
https://golang.org/cl/162055
parent 354b1005
......@@ -2,11 +2,11 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
include $(GOROOT)/src/Make.$(GOARCH)
include ../../../Make.$(GOARCH)
TARG=crypto/md4
GOFILES=\
md4.go\
md4block.go\
include $(GOROOT)/src/Make.pkg
include ../../../Make.pkg
......@@ -2,11 +2,11 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
include $(GOROOT)/src/Make.$(GOARCH)
include ../../../../Make.$(GOARCH)
TARG=exp/draw/x11
GOFILES=\
auth.go\
conn.go\
include $(GOROOT)/src/Make.pkg
include ../../../../Make.pkg
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment