guix-commits
[Top][All Lists]
Advanced

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

21/38: gnu: libsigrok: Return #t from all phases.


From: Tobias Geerinckx-Rice
Subject: 21/38: gnu: libsigrok: Return #t from all phases.
Date: Mon, 25 Jun 2018 22:24:24 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit fbe4a5a2cb9972ce16ecbede7dd3be8d69029ace
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Jun 24 22:05:45 2018 +0200

    gnu: libsigrok: Return #t from all phases.
    
    * gnu/packages/electronics.scm (libsigrok)[arguments]: Substitute INVOKE
    for SYSTEM*. Return #t rather than undefined from phases.
---
 gnu/packages/electronics.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index 068aa23..af3ebeb 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -146,7 +146,7 @@ as simple logic analyzer and/or oscilloscope hardware.")
                #t)))
          (add-after 'build 'build-doc
            (lambda _
-             (zero? (system* "doxygen"))))
+             (invoke "doxygen")))
          (add-after 'install 'install-doc
            (lambda* (#:key outputs #:allow-other-keys)
              (copy-recursively "doxy/html-api"
@@ -158,7 +158,8 @@ as simple logic analyzer and/or oscilloscope hardware.")
              (install-file "contrib/60-libsigrok.rules"
                            (string-append
                             (assoc-ref outputs "out")
-                            "/lib/udev/rules.d/"))))
+                            "/lib/udev/rules.d/"))
+             #t))
          (add-after 'install-udev-rules 'install-fw
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let* ((fx2lafw (assoc-ref inputs "sigrok-firmware-fx2lafw"))



reply via email to

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