From c1f5b4143d01bcfa8a826338eebfe3503a28128e Mon Sep 17 00:00:00 2001 From: "binji@chromium.org" Date: Wed, 18 Jul 2012 17:55:20 +0000 Subject: [NaCl SDK] Turn off building win host for now, the buildbots don't have cl.exe in the path. BUG=none TEST=none TBR=noelallen@chromium.org NOTRY=true Review URL: https://chromiumcodereview.appspot.com/10799009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147268 0039d316-1c4b-4281-b951-d872f2087c98 --- native_client_sdk/src/build_tools/build_sdk.py | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'native_client_sdk') diff --git a/native_client_sdk/src/build_tools/build_sdk.py b/native_client_sdk/src/build_tools/build_sdk.py index ec21f90..b6c739e 100755 --- a/native_client_sdk/src/build_tools/build_sdk.py +++ b/native_client_sdk/src/build_tools/build_sdk.py @@ -540,15 +540,16 @@ def main(args): tarfile = os.path.join(OUT_DIR, tarname) # Ship with libraries prebuilt, so run that first - buildbot_common.BuildStep('Build Libraries') - src_dir = os.path.join(pepperdir, 'src') - makefile = os.path.join(src_dir, 'Makefile') - if os.path.isfile(makefile): - print "\n\nMake: " + src_dir - buildbot_common.Run(['make', '-j8'], - cwd=os.path.abspath(src_dir), shell=True) - buildbot_common.Run(['make', '-j8', 'clean'], - cwd=os.path.abspath(src_dir), shell=True) + if False: + buildbot_common.BuildStep('Build Libraries') + src_dir = os.path.join(pepperdir, 'src') + makefile = os.path.join(src_dir, 'Makefile') + if os.path.isfile(makefile): + print "\n\nMake: " + src_dir + buildbot_common.Run(['make', '-j8'], + cwd=os.path.abspath(src_dir), shell=True) + buildbot_common.Run(['make', '-j8', 'clean'], + cwd=os.path.abspath(src_dir), shell=True) if not skip_tar: buildbot_common.BuildStep('Tar Pepper Bundle') -- cgit v1.1