diff options
author | Alex Brainman <alex.brainman@gmail.com> | 2012-02-10 11:48:22 +1100 |
---|---|---|
committer | Alex Brainman <alex.brainman@gmail.com> | 2012-02-10 11:48:22 +1100 |
commit | 68c3aa3c0d9d2d4dcce5b5cf60df6e2895fa99cc (patch) | |
tree | 76386cdf911f8e3b3509c2d5139d162156190161 /src/make.bat | |
parent | 68a7df62a2add192553a14a5df20b05098f538a0 (diff) | |
download | go-68c3aa3c0d9d2d4dcce5b5cf60df6e2895fa99cc.tar.gz |
make.bat: remove double quotes
Fixes issue 2974.
R=golang-dev, r, rsc
CC=golang-dev
http://codereview.appspot.com/5653052
Diffstat (limited to 'src/make.bat')
-rw-r--r-- | src/make.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/make.bat b/src/make.bat index 804c35ad0..3a456513f 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. |