forked from Lainports/freebsd-ports
of Syntensity, and consists of a client, server, and master (metadata) server - everything you need to run your own games or even your own virtual world. WWW: http://www.syntensity.com/
14 lines
569 B
Text
14 lines
569 B
Text
--- src/thirdparty/v8/SConstruct.orig 2010-01-30 03:01:20.000000000 +0300
|
|
+++ src/thirdparty/v8/SConstruct 2010-01-30 03:02:10.000000000 +0300
|
|
@@ -824,7 +824,10 @@
|
|
else:
|
|
prefix = options[key]
|
|
if isinstance(prefix, StringTypes): prefix = prefix.split()
|
|
- options[key] = prefix + value
|
|
+ if key == 'CPPPATH':
|
|
+ options[key] = value + prefix
|
|
+ else:
|
|
+ options[key] = prefix + value
|
|
|
|
def ConfigureObject(self, env, input, **kw):
|
|
if (kw.has_key('CPPPATH') and env.has_key('CPPPATH')):
|