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

Unified Diff: pylib/gyp/generator/make.py

Issue 10854195: fix link deadlock (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: Created 8 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: pylib/gyp/generator/make.py
diff --git a/pylib/gyp/generator/make.py b/pylib/gyp/generator/make.py
index 2cb3331ba32bf5fb9ba60fc16a9ad58a0e224330..edb2c5cff996c235b967b7715c27da5e7541c847 100644
--- a/pylib/gyp/generator/make.py
+++ b/pylib/gyp/generator/make.py
@@ -2014,7 +2014,7 @@ def GenerateOutput(target_list, target_dicts, data, params):
for key, value in make_global_settings_array:
if value[0] != '$':
value = '$(abspath %s)' % value
- if key in ('LINK', 'LINK.host'):
+ if key == 'LINK':
make_global_settings += ('%s ?= %s $(builddir)/linker.lock %s\n' %
(key, flock_command, value))
elif key in ('CC', 'CC.host', 'CXX', 'CXX.host'):
« 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