diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 13:42:58 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 13:42:58 +0100 |
commit | ed0d6ed9a6ffd45466a3a68191544b994125fd64 (patch) | |
tree | c76bc43a2c63cba99ad8e011356f41f67fda9bc7 /gnu/packages | |
parent | d83c52c6bb0401ae75245598328d480dd77c5a5e (diff) | |
download | patches-ed0d6ed9a6ffd45466a3a68191544b994125fd64.tar patches-ed0d6ed9a6ffd45466a3a68191544b994125fd64.tar.gz |
gnu: tevent: Use INVOKE.
* gnu/packages/samba.scm (tevent)[arguments]: Use INVOKE.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/samba.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index d3c0539c33..19a126cc97 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -320,9 +320,9 @@ destructors. It is the core memory allocator used in Samba.") ;; tevent uses a custom configuration script that runs waf. (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) - (zero? (system* "./configure" - (string-append "--prefix=" out) - "--bundled-libraries=NONE")))))))) + (invoke "./configure" + (string-append "--prefix=" out) + "--bundled-libraries=NONE"))))))) (native-inputs `(("pkg-config" ,pkg-config) ("python" ,python-2))) |