Backed out changeset 8553d6d258cc (bug 952206) for Windows bustage.

CLOSED TREE
This commit is contained in:
Ryan VanderMeulen 2014-01-06 14:15:10 -05:00
parent de5adc60bd
commit ab53c3e13d
2 changed files with 2 additions and 19 deletions

View File

@ -1590,13 +1590,8 @@ class _RemakeContext(object):
def remakecb(self, error, didanything):
assert error in (True, False)
if error:
if self.required:
self.cb(remade=False, error=util.MakeError(
'Error remaking required makefiles'))
return
else:
print 'Error remaking makefiles (ignored)'
if error and self.required:
print "Error remaking makefiles (ignored)"
if len(self.toremake):
target, self.required = self.toremake.pop(0)

View File

@ -1,12 +0,0 @@
#T returncode: 2
# Required include targets that fail should abort execution.
include dummy.mk
all:
@echo TEST-FAIL
dummy.mk:
@echo "Evaluated dummy.mk"
exit 1