gnu: autoconf@2.13: Use invoke.

* gnu/packages/autotools.scm (autoconf-2.13)[arguments]: Use invoke in the
custom configure phase.
master
Mark H Weaver 2018-03-23 01:39:02 -04:00
parent 3d77ecfed4
commit 95cc40a88a
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 3 additions and 3 deletions

View File

@ -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)