Commit 57dbc995 authored by Nico Weber's avatar Nico Weber Committed by Commit Bot

mb: Remove workaround

Bug: 997673
Change-Id: Ibe3c484630173772f7dc457ee85856b68ab84a36
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784617
Commit-Queue: Nico Weber <thakis@chromium.org>
Commit-Queue: Mirko Bonadei <mbonadei@chromium.org>
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarMirko Bonadei <mbonadei@chromium.org>
Cr-Commit-Position: refs/heads/master@{#693141}
parent f3d5644c
......@@ -1109,8 +1109,7 @@ class MetaBuildWrapper(object):
# This runs before the build, so we can't use isdir(f). But
# isolate.py luckily requires data directories to end with '/', so we
# can check for that.
# TODO(thakis): Use '../../' once crbug.com/997673 is fixed.
if not f.startswith('../') and f.endswith('/'):
if not f.startswith('../../') and f.endswith('/'):
# Don't use self.PathJoin() -- all involved paths consistently use
# forward slashes, so don't add one single backslash on Windows.
err += '\n' + build_dir + '/' + f
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment