Add missing space at the end of verbose build command (issue #2431).

This commit is contained in:
Cristian Amarie 2018-05-01 15:55:47 +00:00 committed by Marshall Greenblatt
parent 4b33c17533
commit f6c9a96a12
1 changed files with 1 additions and 1 deletions

View File

@ -1050,7 +1050,7 @@ if not options.nobuild and (chromium_checkout_changed or \
# Build using Ninja.
command = 'ninja -C '
if options.verbosebuild:
command = 'ninja -v -C'
command = 'ninja -v -C '
target = ' ' + options.buildtarget
if options.buildtests:
target = target + ' ceftests'