From: Alex Brainman Date: Fri, 10 Feb 2012 00:48:22 +0000 (+1100) Subject: make.bat: remove double quotes X-Git-Tag: weekly.2012-02-14~167 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9a469e6ab536e32600d7a3e002ce387bf10a6780;p=gostls13.git make.bat: remove double quotes Fixes #2974. R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/5653052 --- diff --git a/src/make.bat b/src/make.bat index 804c35ad04..3a456513fa 100644 --- a/src/make.bat +++ b/src/make.bat @@ -16,9 +16,9 @@ goto fail :: backslashes. Then we wrap that in quotes to create :: a C string. cd .. -set GOROOT="%CD%" +set GOROOT=%CD% 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:\=\\%\"" echo # Building C bootstrap tool.