summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2017-09-17 15:06:15 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2017-09-17 18:52:25 -0700
commit742cd7f1270e0fe6229a965b768c1613e653eb3b (patch)
tree2c31e1ecc905e54ba67532a3c27224e3f90753ac
parenteb0ea7697ac3cc903051157f2580d03d073b325a (diff)
downloadspack-742cd7f1270e0fe6229a965b768c1613e653eb3b.tar.gz
spack-742cd7f1270e0fe6229a965b768c1613e653eb3b.tar.bz2
spack-742cd7f1270e0fe6229a965b768c1613e653eb3b.tar.xz
spack-742cd7f1270e0fe6229a965b768c1613e653eb3b.zip
Remove redundant dest arguments in install.py
-rw-r--r--lib/spack/spack/cmd/install.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/spack/spack/cmd/install.py b/lib/spack/spack/cmd/install.py
index ee752222db..f9d60c8f32 100644
--- a/lib/spack/spack/cmd/install.py
+++ b/lib/spack/spack/cmd/install.py
@@ -60,28 +60,28 @@ the dependencies"""
'-j', '--jobs', action='store', type=int,
help="explicitly set number of make jobs. default is #cpus")
subparser.add_argument(
- '--keep-prefix', action='store_true', dest='keep_prefix',
+ '--keep-prefix', action='store_true',
help="don't remove the install prefix if installation fails")
subparser.add_argument(
- '--keep-stage', action='store_true', dest='keep_stage',
+ '--keep-stage', action='store_true',
help="don't remove the build stage if installation succeeds")
subparser.add_argument(
- '--restage', action='store_true', dest='restage',
+ '--restage', action='store_true',
help="if a partial install is detected, delete prior state")
subparser.add_argument(
'--source', action='store_true', dest='install_source',
help="install source files in prefix")
subparser.add_argument(
- '-n', '--no-checksum', action='store_true', dest='no_checksum',
+ '-n', '--no-checksum', action='store_true',
help="do not check packages against checksum")
subparser.add_argument(
- '-v', '--verbose', action='store_true', dest='verbose',
+ '-v', '--verbose', action='store_true',
help="display verbose build output while installing")
subparser.add_argument(
- '--fake', action='store_true', dest='fake',
+ '--fake', action='store_true',
help="fake install. just remove prefix and create a fake file")
subparser.add_argument(
- '-f', '--file', action='store_true', dest='file',
+ '-f', '--file', action='store_true',
help="install from file. Read specs to install from .yaml files")
cd_group = subparser.add_mutually_exclusive_group()
@@ -93,7 +93,7 @@ the dependencies"""
help="spec of the package to install"
)
subparser.add_argument(
- '--run-tests', action='store_true', dest='run_tests',
+ '--run-tests', action='store_true',
help="run package level tests during installation"
)
subparser.add_argument(