From 65901f4b92afc6a1eff4cf3bdaf5d40c0c658995 Mon Sep 17 00:00:00 2001 From: Rainer Schuetze Date: Thu, 28 Mar 2019 22:52:02 +0100 Subject: [PATCH] Windows: fix quoting when building with win64.mak --- create_dmd_release/create_dmd_release.d | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/create_dmd_release/create_dmd_release.d b/create_dmd_release/create_dmd_release.d index 284d047c..2187a063 100644 --- a/create_dmd_release/create_dmd_release.d +++ b/create_dmd_release/create_dmd_release.d @@ -404,12 +404,12 @@ void buildAll(Bits bits, string branch, bool dmdOnly=false) if(bits == Bits.bits64) { msvcEnv = - " VCDIR=" ~ quote(win64vcDir) ~ - " SDKDIR=" ~ quote(win64sdkDir) ~ - " CC=" ~ quote(`\"` ~ msvcBinDir~"/cl" ~`\"`) ~ - " LD=" ~ quote(`\"` ~ msvcBinDir~"/link" ~`\"`) ~ - " AR=" ~ quote(`\"` ~ msvcBinDir~"/lib" ~`\"`); - } + " " ~ quote("VCDIR=" ~ win64vcDir) ~ + " " ~ quote("SDKDIR=" ~ win64sdkDir) ~ + " " ~ quote("CC=" ~ msvcBinDir~"/cl") ~ + " " ~ quote("LD=" ~ msvcBinDir~"/link") ~ + " " ~ quote("AR=" ~ msvcBinDir~"/lib"); + } } auto targetMakefile = bits == Bits.bits32? makefile : makefile64;