Add 'docs' variant to rust-bootstrap (#42768)
* Add 'docs' variant to rust-bootstrap * remove docs for rust-bootstrap
This commit is contained in:
parent
de3d1e6c66
commit
e196978c7c
1 changed files with 2 additions and 1 deletions
|
@ -126,4 +126,5 @@ def url_for_version(self, version):
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
install_script = Executable("./install.sh")
|
install_script = Executable("./install.sh")
|
||||||
install_script(f"--prefix={prefix}")
|
install_args = [f"--prefix={prefix}", "--without=rust-docs"]
|
||||||
|
install_script(" ".join(install_args))
|
||||||
|
|
Loading…
Reference in a new issue