From 6b2c8ad23ee1105700ff129b67f8f77d3e99e8ac Mon Sep 17 00:00:00 2001 From: Carles Date: Mon, 20 Feb 2017 17:38:07 +0100 Subject: [PATCH] Update vs-cfg.cmd prepend win/utils path instead of append it. It should force the build-deps.cmd to call 7za.exe within utils and not any other old-version that users might already have. Discussed in https://sourceforge.net/p/ifcopenshell/discussion/1782717/thread/53803197/ --- win/vs-cfg.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win/vs-cfg.cmd b/win/vs-cfg.cmd index bb13e3ada1..c7a6c90ede 100644 --- a/win/vs-cfg.cmd +++ b/win/vs-cfg.cmd @@ -144,7 +144,7 @@ IF %VS_VER%==2008 set VCPROJ_FILE_EXT=vcproj :: Add utils to PATH set ORIGINAL_PATH=%PATH% -set PATH=%PATH%;%~dp0utils +set PATH=%~dp0utils;%PATH% :: Fetch and build the dependencies to a dedicated directory depending on the used VS version and target architecture. :: NOTE For IfcOpenShell we can build all of our deps both x86 and x64 using different VS versions in the same directories @@ -167,4 +167,4 @@ set length=0 if defined # (set #=%#:~1%&set /A length += 1&goto stringLengthLoop) ::echo the string is %length% characters long! set "%~1=%length%" -GOTO :EOF \ No newline at end of file +GOTO :EOF