summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--o3d/v8/build.scons12
1 files changed, 6 insertions, 6 deletions
diff --git a/o3d/v8/build.scons b/o3d/v8/build.scons
index ccb133b..6fd51cc 100644
--- a/o3d/v8/build.scons
+++ b/o3d/v8/build.scons
@@ -93,20 +93,20 @@ if v8_env.Bit('windows'):
v8_env['ENV']['USERPROFILE'] = ""
include_path = ";".join(
- [v8_env.subst("$INCLUDE"),
- v8_env.subst("$PLATFORM_SDK_VISTA_6_0_DIR/Include")])
+ [v8_env.subst("$PLATFORM_SDK_VISTA_6_0_DIR/Include"),
+ v8_env.subst("$INCLUDE")])
try:
- v8_env['ENV']['INCLUDE'] += ";" + include_path
+ v8_env['ENV']['INCLUDE'] = include_path + ";" + v8_env['ENV']['INCLUDE']
except KeyError:
v8_env['ENV']['INCLUDE'] = include_path
lib_path = ";".join(
- [v8_env.subst("$LIB"),
- v8_env.subst("$PLATFORM_SDK_VISTA_6_0_DIR/Lib")])
+ [v8_env.subst("$PLATFORM_SDK_VISTA_6_0_DIR/Lib"),
+ v8_env.subst("$LIB")])
try:
- v8_env['ENV']['LIB'] += ";" + lib_path
+ v8_env['ENV']['LIB'] = lib_path + ";" + v8_env['ENV']['LIB']
except KeyError:
v8_env['ENV']['LIB'] = lib_path