diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-03-08 13:57:13 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-03-08 13:57:13 -0800 |
commit | df84677d1640139673c26a4c407698486905fbb3 (patch) | |
tree | 725b4e5f1dbc3fd16476f78ad79fc3dd6784c195 /lib | |
parent | a1be45d0e7f1921176b40b2aa497309029f1f7ad (diff) | |
download | spack-df84677d1640139673c26a4c407698486905fbb3.tar.gz spack-df84677d1640139673c26a4c407698486905fbb3.tar.bz2 spack-df84677d1640139673c26a4c407698486905fbb3.tar.xz spack-df84677d1640139673c26a4c407698486905fbb3.zip |
Make diy generate verbose build output by default.
- added -q option to shut it up
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/diy.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/spack/spack/cmd/diy.py b/lib/spack/spack/cmd/diy.py index 9df53312f8..2c3a8761ab 100644 --- a/lib/spack/spack/cmd/diy.py +++ b/lib/spack/spack/cmd/diy.py @@ -46,6 +46,9 @@ def setup_parser(subparser): '--skip-patch', action='store_true', help="Skip patching for the DIY build.") subparser.add_argument( + '-q', '--quiet', action='store_true', dest='quiet', + help="Do not display verbose build output while installing.") + subparser.add_argument( 'spec', nargs=argparse.REMAINDER, help="specs to use for install. Must contain package AND verison.") @@ -92,4 +95,5 @@ def diy(self, args): package.do_install( keep_prefix=args.keep_prefix, ignore_deps=args.ignore_deps, + verbose=not args.quiet, keep_stage=True) # don't remove source dir for DIY. |