diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-04-03 15:33:34 +0530 |
---|---|---|
committer | GStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2020-04-03 12:04:01 +0000 |
commit | 5ca5553c30aac409309052746c6090e6debdd9de (patch) | |
tree | 11970799faa62f996311f026b2ae400201cef6b5 | |
parent | 93257a7f17453f8d75100bbfda5716a3f752d3eb (diff) |
ninja.recipe: Output full command-lines when building
This helps debug build issues.
-rw-r--r-- | recipes/build-tools/ninja.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/build-tools/ninja.recipe b/recipes/build-tools/ninja.recipe index 035fd5e0..197356d2 100644 --- a/recipes/build-tools/ninja.recipe +++ b/recipes/build-tools/ninja.recipe @@ -13,7 +13,7 @@ class Recipe(recipe.Recipe): files_bin = ['bin/ninja'] def configure(self): - shell.new_call([self.config.python_exe, 'configure.py', '--bootstrap'], + shell.new_call([self.config.python_exe, 'configure.py', '--bootstrap', '--verbose'], self.build_dir, logfile=self.logfile, env=self.env) async def install(self): |