Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(490)

Unified Diff: v8/build.scons

Issue 125016: Fixing v8 build when include or lib are set. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: v8/build.scons
===================================================================
--- v8/build.scons (revision 18210)
+++ v8/build.scons (working copy)
@@ -93,20 +93,20 @@
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698