gnu: guile-gdbm-ffi: Use 'invoke'.

* gnu/packages/guile.scm (guile-gdbm-ffi)[arguments]: Use 'invoke'
instead of 'system*'.
This commit is contained in:
Mark H Weaver 2018-03-18 08:37:42 -04:00
parent 74c164e000
commit 07e36357a5
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 1 additions and 1 deletions

View File

@ -1166,7 +1166,7 @@ inspired by the SCSH regular expression system.")
(string-append module-dir "/gdbm.go"))
(compile-file
(lambda (in-file out-file)
(system* guild "compile" "-o" out-file in-file))))
(invoke guild "compile" "-o" out-file in-file))))
;; Switch directory for compiling and installing
(chdir source)