mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu-build-system: Print the `configure' flags.
* guix/build/gnu-build-system.scm (configure): Print CONFIGURE-FLAGS.
This commit is contained in:
parent
8ef3401f65
commit
18a8dad70c
1 changed files with 1 additions and 0 deletions
|
@ -60,6 +60,7 @@ (define* (configure #:key outputs (configure-flags '()) #:allow-other-keys)
|
||||||
(let ((prefix (assoc-ref outputs "out"))
|
(let ((prefix (assoc-ref outputs "out"))
|
||||||
(libdir (assoc-ref outputs "lib"))
|
(libdir (assoc-ref outputs "lib"))
|
||||||
(includedir (assoc-ref outputs "include")))
|
(includedir (assoc-ref outputs "include")))
|
||||||
|
(format #t "configure flags: ~s~%" configure-flags)
|
||||||
(zero? (apply system* "./configure"
|
(zero? (apply system* "./configure"
|
||||||
"--enable-fast-install"
|
"--enable-fast-install"
|
||||||
(string-append "--prefix=" prefix)
|
(string-append "--prefix=" prefix)
|
||||||
|
|
Loading…
Reference in a new issue