From 22ee0a576faff87a24e30b2a27a3607dee4ca6c7 Mon Sep 17 00:00:00 2001 From: Charlie Arnold Date: Sat, 23 Jan 2016 13:11:59 -0800 Subject: [PATCH] build: fix msvc build Fix configure to set DST_PATH to the Windows style path when building with MSVC Fixes ticket #5180. Signed-off-by: Andreas Cadhalpun --- configure | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 8f4642b898..f7d10004d5 100755 --- a/configure +++ b/configure @@ -6233,6 +6233,12 @@ enabled stripping || strip="echo skipping strip" config_files="$TMPH config.mak doc/config.texi" +if enabled msvc; then + dst_path=$(pwd -W) +else + dst_path=$(pwd) +fi + cat > config.mak <