/[gentoo-x86]/www-client/chromium/files/chromium-make-3.82-compatibility-r0.patch
Gentoo

Contents of /www-client/chromium/files/chromium-make-3.82-compatibility-r0.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations) (download)
Wed Aug 11 00:03:16 2010 UTC (4 years, 9 months ago) by phajdan.jr
Branch: MAIN
Fix compile with make-3.82, bug #332131 by polynomial-c.
(Portage version: 2.1.8.3/cvs/Linux i686)

1 --- tools/gyp/pylib/gyp/generator/make.py.orig 2010-08-10 23:58:52.000000000 +0200
2 +++ tools/gyp/pylib/gyp/generator/make.py 2010-08-11 00:00:15.000000000 +0200
3 @@ -656,7 +656,7 @@
4 part_of_all: flag indicating this target is part of 'all'
5 """
6 for action in actions:
7 - name = self.target + '_' + action['action_name']
8 + name = self.target + '_' + action['action_name'].replace(' ', '_')
9 self.WriteLn('### Rules for action "%s":' % action['action_name'])
10 inputs = action['inputs']
11 outputs = action['outputs']
12 @@ -725,7 +725,7 @@
13 part_of_all: flag indicating this target is part of 'all'
14 """
15 for rule in rules:
16 - name = self.target + '_' + rule['rule_name']
17 + name = self.target + '_' + rule['rule_name'].replace(' ', '_')
18 count = 0
19 self.WriteLn('### Generated for rule %s:' % name)
20

  ViewVC Help
Powered by ViewVC 1.1.20