| Index: build/config/mac/xcrun.py
|
| diff --git a/build/config/mac/xcrun.py b/build/config/mac/xcrun.py
|
| index e2a775e51588bc58aea832544c35e2ef18cd5061..bc002d132f15431d813a3f2a98648d3b27753133 100644
|
| --- a/build/config/mac/xcrun.py
|
| +++ b/build/config/mac/xcrun.py
|
| @@ -12,7 +12,10 @@ if __name__ == '__main__':
|
| description='A script to execute a command via xcrun.')
|
| parser.add_argument('--stamp', action='store', type=str,
|
| help='Write a stamp file to this path on success.')
|
| + parser.add_argument('--developer_dir',
|
| + help='Write a stamp file to this path on success.')
|
| args, unknown_args = parser.parse_known_args()
|
| + os.environ['DEVELOPER_DIR'] = args.developer_dir
|
|
|
| rv = subprocess.check_call(['xcrun'] + unknown_args)
|
| if rv == 0 and args.stamp:
|
|
|