summaryrefslogtreecommitdiff
path: root/games/intensityengine/files/patch-src-thirdparty-v8-SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'games/intensityengine/files/patch-src-thirdparty-v8-SConstruct')
-rw-r--r--games/intensityengine/files/patch-src-thirdparty-v8-SConstruct14
1 files changed, 0 insertions, 14 deletions
diff --git a/games/intensityengine/files/patch-src-thirdparty-v8-SConstruct b/games/intensityengine/files/patch-src-thirdparty-v8-SConstruct
deleted file mode 100644
index 7dccb6e8ecc5..000000000000
--- a/games/intensityengine/files/patch-src-thirdparty-v8-SConstruct
+++ /dev/null
@@ -1,14 +0,0 @@
---- 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')):