diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 01:39:02 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:40:10 -0400 |
commit | 95cc40a88ab700f26f7366a8ce5a5d498f882a0c (patch) | |
tree | 28e8c47e62c3e12b7a8295cc0ea3497cd65838d4 /gnu/packages/autotools.scm | |
parent | 3d77ecfed4aab76fbd1a4b6718e44f42f482a70b (diff) | |
download | guix-95cc40a88ab700f26f7366a8ce5a5d498f882a0c.tar guix-95cc40a88ab700f26f7366a8ce5a5d498f882a0c.tar.gz |
gnu: autoconf@2.13: Use invoke.
* gnu/packages/autotools.scm (autoconf-2.13)[arguments]: Use invoke in the
custom configure phase.
Diffstat (limited to 'gnu/packages/autotools.scm')
-rw-r--r-- | gnu/packages/autotools.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm index 913caa2c20..7998dea504 100644 --- a/gnu/packages/autotools.scm +++ b/gnu/packages/autotools.scm @@ -121,9 +121,9 @@ know anything about Autoconf or M4.") (out (assoc-ref outputs "out"))) (setenv "CONFIG_SHELL" bash) (setenv "SHELL" bash) - (zero? (system* bash "./configure" - (string-append "--prefix=" out) - (string-append "--build=" build))))))))))) + (invoke bash "./configure" + (string-append "--prefix=" out) + (string-append "--build=" build)))))))))) (define (make-autoconf-wrapper autoconf) |