Gentoo Archives: gentoo-commits

From: "Alexys Jacob (ultrabug)" <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/mongodb/files: mongodb-2.4-fix-v8-pythonpath.patch
Date: Mon, 26 May 2014 11:08:27
Message-Id: 20140526110823.C5A8F2004E@flycatcher.gentoo.org
1 ultrabug 14/05/26 11:08:23
2
3 Added: mongodb-2.4-fix-v8-pythonpath.patch
4 Log:
5 fix #510142, drop old
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
8
9 Revision Changes Path
10 1.1 dev-db/mongodb/files/mongodb-2.4-fix-v8-pythonpath.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb-2.4-fix-v8-pythonpath.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/mongodb/files/mongodb-2.4-fix-v8-pythonpath.patch?rev=1.1&content-type=text/plain
14
15 Index: mongodb-2.4-fix-v8-pythonpath.patch
16 ===================================================================
17 --- a/src/third_party/v8/SConscript 2014-05-26 11:00:37.725508098 +0200
18 +++ b/src/third_party/v8/SConscript 2014-05-26 11:01:13.265029083 +0200
19 @@ -29,7 +29,7 @@
20 import sys
21 from os.path import join, dirname, abspath
22 root_dir = dirname(File('SConscript').rfile().abspath)
23 -sys.path.append(join(root_dir, 'tools'))
24 +sys.path.insert(0, join(root_dir, 'tools'))
25 import js2c
26
27 Import("env windows linux darwin solaris freebsd debugBuild")