Added patch to ensure dbghelp always checks for debug symbols in BINDIR.

This commit is contained in:
Sebastian Lackner
2014-11-15 20:24:21 +01:00
parent 87684b59a7
commit 54b4500a85
4 changed files with 62 additions and 1 deletions

View File

@@ -176,7 +176,7 @@ def read_definition(revision, filename, name_to_id):
try:
with open(os.devnull, 'w') as devnull:
content = subprocess.check_output(["git", "show", filename], stderr=devnull)
except CalledProcessError:
except subprocess.CalledProcessError:
raise IOError("Failed to load %s" % filename)
depends = set()