build: gnu-build-system: Don't run configure during bootstrap.
* guix/build/gnu-build-system.scm (bootstrap): Add NOCONFIGURE environment variable before running bootstrap scripts.
This commit is contained in:
parent
acb9277480
commit
481a0f1a7c
1 changed files with 1 additions and 0 deletions
|
@ -190,6 +190,7 @@ (define* (bootstrap #:key (bootstrap-scripts %bootstrap-scripts)
|
|||
(if (executable-file? script)
|
||||
(begin
|
||||
(patch-shebang script)
|
||||
(setenv "NOCONFIGURE" "true")
|
||||
(invoke script))
|
||||
(invoke "sh" script)))
|
||||
(if (or (file-exists? "configure.ac")
|
||||
|
|
Loading…
Reference in a new issue