summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/gyp/pylib/gyp/generator/make.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/gyp/pylib/gyp/generator/make.py b/tools/gyp/pylib/gyp/generator/make.py
index 585dee4bd8..e98d93ab23 100644
--- a/tools/gyp/pylib/gyp/generator/make.py
+++ b/tools/gyp/pylib/gyp/generator/make.py
@@ -1758,10 +1758,8 @@ $(obj).$(TOOLSET)/$(TARGET)/%%.o: $(obj)/%%%s FORCE_DO_CMD
self.WriteLn('%s: %s' % (' '.join(outputs), intermediate))
self.WriteLn('\t%s' % '@:')
self.WriteLn('%s: %s' % ('.INTERMEDIATE', intermediate))
- # Don't add `force_append` (FORCE_DO_CMD) to the intermediate sentinal.
- # Adding it makes the action run alway, even when there are no changes.
- # (refack): AFAICT because `*.intermediate` files don't have build rules.
- self.WriteLn('%s: %s' % (intermediate, ' '.join(inputs)))
+ self.WriteLn('%s: %s%s' %
+ (intermediate, ' '.join(inputs), force_append))
actions.insert(0, '$(call do_cmd,touch)')
if actions: