Gentoo Archives: gentoo-commits

From: "PaweA Hajdan (phajdan.jr)" <phajdan.jr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/v8/files: v8-gentoo-bug-349794-r0.patch
Date: Fri, 31 Dec 2010 16:34:45
Message-Id: 20101231163435.E85C620057@flycatcher.gentoo.org
1 phajdan.jr 10/12/31 16:34:35
2
3 Added: v8-gentoo-bug-349794-r0.patch
4 Log:
5 Fix build, bug #349794 by flameeyes. Used patch by Mike Gilbert <floppymaster@×××××.com>.
6
7 (Portage version: 2.1.9.25/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 dev-lang/v8/files/v8-gentoo-bug-349794-r0.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/files/v8-gentoo-bug-349794-r0.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/files/v8-gentoo-bug-349794-r0.patch?rev=1.1&content-type=text/plain
14
15 Index: v8-gentoo-bug-349794-r0.patch
16 ===================================================================
17 Index: SConstruct
18 ===================================================================
19 --- SConstruct (revision 6120)
20 +++ SConstruct (working copy)
21 @@ -32,7 +32,7 @@
22 from os.path import join, dirname, abspath
23 from types import DictType, StringTypes
24 root_dir = dirname(File('SConstruct').rfile().abspath)
25 -sys.path.append(join(root_dir, 'tools'))
26 +sys.path.insert(0, join(root_dir, 'tools'))
27 import js2c, utils
28
29 # ANDROID_TOP is the top of the Android checkout, fetched from the environment