Chromium Code Reviews| Index: site_scons/site_tools/chromium_builders.py |
| =================================================================== |
| --- site_scons/site_tools/chromium_builders.py (revision 12984) |
| +++ site_scons/site_tools/chromium_builders.py (working copy) |
| @@ -302,7 +302,7 @@ |
| copy_action = Action('cp $SOURCE $TARGET', 'Copying $TARGET') |
| for s in source: |
| dest = str(target) + '/' + os.path.split(str(s))[1] |
| - result.extend(env.Command(dest, s, copy_action) |
| + result.extend(env.Command(dest, s, copy_action)) |
|
Mark Mentovai
2009/04/02 05:10:24
Oops!
|
| return result |
| def generate(env): |