singularityce: arg handling fix (#39663)
This commit is contained in:
parent
cb855d5ffd
commit
a1e117a98b
@ -82,9 +82,9 @@ def edit(self, spec, prefix):
|
|||||||
_config_options = ["--prefix=%s" % prefix]
|
_config_options = ["--prefix=%s" % prefix]
|
||||||
_config_options += self.config_options
|
_config_options += self.config_options
|
||||||
if "~suid" in spec:
|
if "~suid" in spec:
|
||||||
_config_options += " --without-suid"
|
_config_options += ["--without-suid"]
|
||||||
if "~network" in spec:
|
if "~network" in spec:
|
||||||
_config_options += " --without-network"
|
_config_options += ["--without-network"]
|
||||||
configure = Executable("./mconfig")
|
configure = Executable("./mconfig")
|
||||||
configure(*_config_options)
|
configure(*_config_options)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user