Commit 9a469e6a authored by Alex Brainman's avatar Alex Brainman

make.bat: remove double quotes

Fixes #2974.

R=golang-dev, r, rsc
CC=golang-dev
https://golang.org/cl/5653052
parent 7750fc89
...@@ -16,9 +16,9 @@ goto fail ...@@ -16,9 +16,9 @@ goto fail
:: backslashes. Then we wrap that in quotes to create :: backslashes. Then we wrap that in quotes to create
:: a C string. :: a C string.
cd .. cd ..
set GOROOT="%CD%" set GOROOT=%CD%
cd src cd src
if "x%GOROOT_FINAL%"=="x" set GOROOT_FINAL="%GOROOT%" if "x%GOROOT_FINAL%"=="x" set GOROOT_FINAL=%GOROOT%
set DEFGOROOT=-DGOROOT_FINAL="\"%GOROOT_FINAL:\=\\%\"" set DEFGOROOT=-DGOROOT_FINAL="\"%GOROOT_FINAL:\=\\%\""
echo # Building C bootstrap tool. echo # Building C bootstrap tool.
......
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