From 9a469e6ab536e32600d7a3e002ce387bf10a6780 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Fri, 10 Feb 2012 11:48:22 +1100 Subject: [PATCH] make.bat: remove double quotes Fixes #2974. R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/5653052 --- src/make.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. -- 2.50.0