From 49179ea08d4364da9797cb1531f9c0c794efe122 Mon Sep 17 00:00:00 2001 From: kichik Date: Mon, 10 Oct 2005 11:45:01 +0000 Subject: [PATCH] Platfrom SDK's headers and libraries are newer than VC Toolkit's git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4314 212acab6-be3b-0410-9dea-997c60f758d6 --- SCons/Tools/mstoolkit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SCons/Tools/mstoolkit.py b/SCons/Tools/mstoolkit.py index babd2099..a7fe266f 100644 --- a/SCons/Tools/mstoolkit.py +++ b/SCons/Tools/mstoolkit.py @@ -86,8 +86,8 @@ def get_msvctoolkit_paths(): except SCons.Util.RegError: raise SCons.Errors.InternalError, "The Platform SDK directory was not found in the registry or in the `MSSdk` environment variable." - include_path = r'%s\include;%s\include' % (MSToolkitDir, PlatformSDKDir) - lib_path = r'%s\lib;%s\lib' % (MSToolkitDir, PlatformSDKDir) + include_path = r'%s\include;%s\include' % (PlatformSDKDir, MSToolkitDir) + lib_path = r'%s\lib;%s\lib' % (PlatformSDKDir, MSToolkitDir) exe_path = r'%s\bin;%s\bin\win95;%s\bin' % (MSToolkitDir, PlatformSDKDir, PlatformSDKDir) return (include_path, lib_path, exe_path, PlatformSDKDir)