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

Unified Diff: src/cmd/8g/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/8c/Makefile ('k') | src/cmd/8l/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/cmd/8g/Makefile
===================================================================
--- a/src/cmd/8g/Makefile
+++ b/src/cmd/8g/Makefile
@@ -29,7 +29,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)
@@ -37,4 +37,4 @@
rm -f *.$O $(TARG) *.8 enam.c 8.out a.out
install: $(TARG)
- cp $(TARG) $(GOBIN)/$(TARG)
+ cp $(TARG) "$(GOBIN)"/$(TARG)
« no previous file with comments | « src/cmd/8c/Makefile ('k') | src/cmd/8l/Makefile » ('j') | no next file with comments »

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