]> Cypherpunks repositories - gostls13.git/commitdiff
make.bat: remove double quotes
authorAlex Brainman <alex.brainman@gmail.com>
Fri, 10 Feb 2012 00:48:22 +0000 (11:48 +1100)
committerAlex Brainman <alex.brainman@gmail.com>
Fri, 10 Feb 2012 00:48:22 +0000 (11:48 +1100)
Fixes #2974.

R=golang-dev, r, rsc
CC=golang-dev
https://golang.org/cl/5653052

src/make.bat

index 804c35ad048e9351bf83a16eee2d01fe51b82e51..3a456513faa440a80cf4e687b8fb1a76441c9c7e 100644 (file)
@@ -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.