Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(272)

Unified Diff: src/cmd/5g/Makefile

Issue 157067: go: makes it build for the case $GOROOT has whitespaces (Closed)
Patch Set: code review 157067: go: makes it build for the case $GOROOT has whitespaces Created 15 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/cmd/5c/Makefile ('k') | src/cmd/5l/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/cmd/5g/Makefile
===================================================================
--- a/src/cmd/5g/Makefile
+++ b/src/cmd/5g/Makefile
@@ -27,7 +27,7 @@
../gc/gc.a$O
$(TARG): $(OFILES) $(LIB)
- $(LD) -o $(TARG) -L$(GOROOT)/lib $(OFILES) $(LIB) -lbio -l9 -lm
+ $(LD) -o $(TARG) -L"$(GOROOT)"/lib $(OFILES) $(LIB) -lbio -l9 -lm
$(OFILES): $(HFILES)
@@ -35,4 +35,4 @@
rm -f *.o $(TARG) *.5 enam.c 5.out a.out
install: $(TARG)
- cp $(TARG) $(GOBIN)/$(TARG)
+ cp $(TARG) "$(GOBIN)"/$(TARG)
« no previous file with comments | « src/cmd/5c/Makefile ('k') | src/cmd/5l/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b