diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-18 08:37:42 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-18 23:30:28 -0400 |
commit | 07e36357a51a62ce14afd19a3187ddf6a813cf0a (patch) | |
tree | 70f7604f0c21f6eddcdf3a10a85e0417cc3b189e | |
parent | 74c164e000e8f064a1c38e8e7960b990c428af6a (diff) | |
download | patches-07e36357a51a62ce14afd19a3187ddf6a813cf0a.tar patches-07e36357a51a62ce14afd19a3187ddf6a813cf0a.tar.gz |
gnu: guile-gdbm-ffi: Use 'invoke'.
* gnu/packages/guile.scm (guile-gdbm-ffi)[arguments]: Use 'invoke'
instead of 'system*'.
-rw-r--r-- | gnu/packages/guile.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index c8b336123b..1c8eaa9ec5 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -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) |