1
0
mirror of https://github.com/golang/go synced 2024-11-22 09:54:40 -07:00

make.bat: remove double quotes

Fixes #2974.

R=golang-dev, r, rsc
CC=golang-dev
https://golang.org/cl/5653052
This commit is contained in:
Alex Brainman 2012-02-10 11:48:22 +11:00
parent 7750fc894a
commit 9a469e6ab5

View File

@ -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.