Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: tools/bots/dart_sdk.py

Issue 2233923002: Fix error in SDK build script (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/dart_sdk.py
diff --git a/tools/bots/dart_sdk.py b/tools/bots/dart_sdk.py
index ff918599da92c4b7ecb80d368b35eb6b228b7dd0..15671143ef8588e190b7411ed00890f6ab61f05c 100644
--- a/tools/bots/dart_sdk.py
+++ b/tools/bots/dart_sdk.py
@@ -30,7 +30,7 @@ def BuildSDK():
sysroot_env['LDFLAGS'] = '--sysroot=%s' % ia32root
sysroot_env['CFLAGS'] = '--sysroot=%s' % ia32root
Run([sys.executable, './tools/build.py', '--mode=release',
- '--arch=ia32', 'create_sdk'], env=sysroot)
+ '--arch=ia32', 'create_sdk'], env=sysroot_env)
x64root = os.path.join(bot_utils.DART_DIR, 'sysroots', 'build', 'linux',
'debian_wheezy_amd64-sysroot')
@@ -39,7 +39,7 @@ def BuildSDK():
sysroot_env['LDFLAGS'] = '--sysroot=%s' % x64root
sysroot_env['CFLAGS'] = '--sysroot=%s' % x64root
Run([sys.executable, './tools/build.py', '--mode=release',
- '--arch=x64', 'create_sdk'], env=sysroot)
+ '--arch=x64', 'create_sdk'], env=sysroot_env)
def BuildDartdocAPIDocs(dirname):
dart_sdk = os.path.join(bot_utils.DART_DIR,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698