make --enable-locks actually enable locks (#24675)

This commit is contained in:
Dylan Simon 2021-11-09 05:52:08 -05:00 committed by Massimiliano Culpo
parent f92a2d688d
commit 544826c825

View file

@ -491,8 +491,9 @@ def setup_main_options(args):
# override lock configuration if passed on command line
if args.locks is not None:
if args.locks is False:
spack.util.lock.check_lock_safety(spack.paths.prefix)
spack.config.set('config:locks', False, scope='command_line')
spack.config.set('config:locks', args.locks, scope='command_line')
if args.mock:
rp = spack.repo.RepoPath(spack.paths.mock_packages_path)