summaryrefslogtreecommitdiffstats
path: root/build/gyp_chromium
diff options
context:
space:
mode:
Diffstat (limited to 'build/gyp_chromium')
-rwxr-xr-xbuild/gyp_chromium6
1 files changed, 2 insertions, 4 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium
index 8bfe62e..a6300a3 100755
--- a/build/gyp_chromium
+++ b/build/gyp_chromium
@@ -527,12 +527,10 @@ if __name__ == '__main__':
os.environ['PATH'] = runtime_path + ';' + os.environ['PATH']
# TODO(scottmg): Temporarily add free space print to try to see how close
# we're getting to failures on windows bots. http://crbug.com/348350
- out_dir = os.path.abspath(GetOutputDirectory())
- print('Using automatic toolchain in %s (%s edition), '
- 'free space in %s: %dM.' % (
+ print('Using automatic toolchain in %s (%s edition), free space: %dM.' % (
toolchain,
'Pro' if version_is_pro else 'Express',
- out_dir, GetFreeSpaceMBWindows(out_dir)))
+ GetFreeSpaceMBWindows(GetOutputDirectory())))
# If CHROMIUM_GYP_SYNTAX_CHECK is set to 1, it will invoke gyp with --check
# to enfore syntax checking.