Chromium Code Reviews| Index: SConstruct |
| diff --git a/SConstruct b/SConstruct |
| index d3963ce698373edaa24c807f20fc192497be06fa..a9a77b338b152708a525dca2db62c70716d25b82 100755 |
| --- a/SConstruct |
| +++ b/SConstruct |
| @@ -1183,8 +1183,10 @@ def GetBootstrap(env): |
| if 'TRUSTED_ENV' in env: |
| trusted_env = env['TRUSTED_ENV'] |
| if trusted_env.Bit('linux'): |
| + template_digits = 'X'*16 |
|
Mark Seaborn
2012/07/30 18:51:12
Nit: spaces around '*', please
Austin Benson
2012/07/31 23:24:12
Done.
|
| return (trusted_env.File('${STAGING_DIR}/nacl_helper_bootstrap'), |
| - ['--r_debug=0xXXXXXXXXXXXXXXXX', '--reserved_at_zero=0xXXXXXXXX']) |
| + ['--r_debug=0x' + template_digits, |
| + '--reserved_at_zero=0x' + template_digits]) |
| return None, None |
| pre_base_env.AddMethod(GetBootstrap) |