| Index: native_client_sdk/src/build_tools/generate_make.py
|
| diff --git a/native_client_sdk/src/build_tools/generate_make.py b/native_client_sdk/src/build_tools/generate_make.py
|
| index 2c87f7c3069968b617451cc926765c3ede61661d..faad723a4381be3d0f96bf4dfce032de05f19753 100644
|
| --- a/native_client_sdk/src/build_tools/generate_make.py
|
| +++ b/native_client_sdk/src/build_tools/generate_make.py
|
| @@ -160,6 +160,9 @@ def FindAndCopyFiles(src_files, root, search_dirs, dst_dir):
|
| Trace('Skipping "%s", destination "%s" is newer.' % (
|
| src_file, dst_file))
|
| continue
|
| + dst_path = os.path.dirname(dst_file)
|
| + if not os.path.exists(dst_path):
|
| + buildbot_common.MakeDir(dst_path)
|
| buildbot_common.CopyFile(src_file, dst_file)
|
|
|
|
|
|
|