summaryrefslogtreecommitdiff
path: root/src/pkg/crypto
diff options
context:
space:
mode:
authorSergio Luis O. B. Correia <sergio@larces.uece.br>2009-11-29 18:14:49 -0800
committerSergio Luis O. B. Correia <sergio@larces.uece.br>2009-11-29 18:14:49 -0800
commit1952386b699d946f10ec06084e0138160378fe57 (patch)
treea0a1cc9cd463d1b13d17d801cb70fd0e4dc83b3b /src/pkg/crypto
parent16a53d5bab26348371f3932afaf952795e0ec0d8 (diff)
downloadgolang-1952386b699d946f10ec06084e0138160378fe57.tar.gz
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 http://codereview.appspot.com/162055 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/pkg/crypto')
-rw-r--r--src/pkg/crypto/md4/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/crypto/md4/Makefile b/src/pkg/crypto/md4/Makefile
index 087d89866..5fff2dd8f 100644
--- a/src/pkg/crypto/md4/Makefile
+++ b/src/pkg/crypto/md4/Makefile
@@ -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