diff options
author | Robert Underwood <robertu94@users.noreply.github.com> | 2021-01-12 15:32:04 -0500 |
---|---|---|
committer | Tamara Dahlgren <dahlgren1@llnl.gov> | 2021-02-17 17:07:41 -0800 |
commit | c99850dd5842cc74382d2b61777797178ca921ed (patch) | |
tree | 55f57afc0dcbc585336bcbcb72a22ce2886c28f8 | |
parent | 1df8e1daca8e448b267d88306fd65e77118ecd72 (diff) | |
download | spack-c99850dd5842cc74382d2b61777797178ca921ed.tar.gz spack-c99850dd5842cc74382d2b61777797178ca921ed.tar.bz2 spack-c99850dd5842cc74382d2b61777797178ca921ed.tar.xz spack-c99850dd5842cc74382d2b61777797178ca921ed.zip |
restore ability of dev-build to skip patches (#20351)
At some point in the past, the skip_patch argument was removed
from the call to package.do_install() this broke the --skip-patch
flag on the dev-build command.
-rw-r--r-- | lib/spack/spack/cmd/dev_build.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/cmd/dev_build.py b/lib/spack/spack/cmd/dev_build.py index 80878f5c76..429ba07246 100644 --- a/lib/spack/spack/cmd/dev_build.py +++ b/lib/spack/spack/cmd/dev_build.py @@ -112,6 +112,7 @@ def dev_build(self, args): verbose=not args.quiet, dirty=args.dirty, stop_before=args.before, + skip_patch=args.skip_patch, stop_at=args.until) # drop into the build environment of the package? |