guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: python-qscintilla: Remove result code plumbing.


From: Mark H. Weaver
Subject: 01/01: gnu: python-qscintilla: Remove result code plumbing.
Date: Wed, 24 Jan 2018 06:43:05 -0500 (EST)

mhw pushed a commit to branch master
in repository guix.

commit 76c7fc436a151236f5e1ff966fd99172d85ee422
Author: Mark H Weaver <address@hidden>
Date:   Wed Jan 24 06:35:29 2018 -0500

    gnu: python-qscintilla: Remove result code plumbing.
    
    * gnu/packages/qt.scm (python-qscintilla)[arguments]: In the 'configure'
    phase, remove result code plumbing that is no longer needed, since 'invoke'
    never returns #false.
---
 gnu/packages/qt.scm | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 5960060..34938b9 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -1715,15 +1715,14 @@ indicators, code completion and call tips.")
          (replace 'configure
            (lambda* (#:key outputs configure-flags #:allow-other-keys)
              (chdir "Python")
-             (and (apply invoke "python3" "configure.py"
-                         configure-flags)
-                  ;; Install to the right directory
-                  (begin
-                    (substitute* '("Makefile"
-                                   "Qsci/Makefile")
-                      (("\\$\\(INSTALL_ROOT\\)/gnu/store/[^/]+")
-                       (assoc-ref outputs "out")))
-                    #t)))))))
+             (apply invoke "python3" "configure.py"
+                    configure-flags)
+             ;; Install to the right directory
+             (substitute* '("Makefile"
+                            "Qsci/Makefile")
+               (("\\$\\(INSTALL_ROOT\\)/gnu/store/[^/]+")
+                (assoc-ref outputs "out")))
+             #t)))))
     (inputs
      `(("qscintilla" ,qscintilla)
        ("python" ,python)



reply via email to

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