guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: clamav: Unconditionally return #T from build phase.


From: guix-commits
Subject: 04/04: gnu: clamav: Unconditionally return #T from build phase.
Date: Thu, 24 Jan 2019 15:18:21 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 6e59d91af19370fa75a681ebc34556fa677a8cbf
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Jan 24 21:16:29 2019 +0100

    gnu: clamav: Unconditionally return #T from build phase.
    
    * gnu/packages/antivirus.scm (clamav)[arguments]: Use INVOKE.
---
 gnu/packages/antivirus.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/antivirus.scm b/gnu/packages/antivirus.scm
index 9574976..c3f1186 100644
--- a/gnu/packages/antivirus.scm
+++ b/gnu/packages/antivirus.scm
@@ -112,8 +112,10 @@
        ;; install sample .conf files to %output/etc rather than /etc/clamav
        #:make-flags (list (string-append "sysconfdir=" %output "/etc"))
        #:phases (modify-phases %standard-phases
+                  ;; Regenerate configure script.  Without this we don't get
+                  ;; the correct value for LLVM linker variables.
                   (add-after 'unpack 'reconf
-                    (lambda _ (zero? (system* "autoreconf" "-vfi"))))
+                    (lambda _ (invoke "autoreconf" "-vfi")))
                   (add-before 'configure 'patch-llvm-config
                     (lambda _
                       (substitute* '("libclamav/c++/detect.cpp"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]