diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-14 21:20:12 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-14 21:20:12 +0000 |
commit | 4421045ff06b9daffd3e222f6e4a02cb89693a19 (patch) | |
tree | 3808b05e7fbf46e8aec8597450d3fd60c8b4f9b1 /native_client_sdk | |
parent | 3906aa4092dadb652340f00b266b99ae0123a9a7 (diff) | |
download | chromium_src-4421045ff06b9daffd3e222f6e4a02cb89693a19.zip chromium_src-4421045ff06b9daffd3e222f6e4a02cb89693a19.tar.gz chromium_src-4421045ff06b9daffd3e222f6e4a02cb89693a19.tar.bz2 |
Fix missing make.bat in examples.
Fix the missing make.bat files in the examples to allow
Windows to correctly build using GNU Make. T
TBR=bradnelson@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9395019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121937 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'native_client_sdk')
-rwxr-xr-x | native_client_sdk/src/build_tools/buildbot_run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native_client_sdk/src/build_tools/buildbot_run.py b/native_client_sdk/src/build_tools/buildbot_run.py index c67e4c6..b608f09 100755 --- a/native_client_sdk/src/build_tools/buildbot_run.py +++ b/native_client_sdk/src/build_tools/buildbot_run.py @@ -401,7 +401,7 @@ def CopyExamples(pepperdir, toolchains): oshelpers.Copy(['-v', os.path.join(SDK_EXAMPLE_DIR, filename), exampledir]) for example in examples: CopyDir(os.path.join(SDK_EXAMPLE_DIR, example), exampledir) - AddMakeBat(exampledir) + AddMakeBat(os.path.join(exampledir, example)) def BuildUpdater(): |