guix-commits
[Top][All Lists]
Advanced

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

16/66: gnu: gettext-minimal: Return #t from all phases.


From: Mark H. Weaver
Subject: 16/66: gnu: gettext-minimal: Return #t from all phases.
Date: Fri, 23 Mar 2018 04:46:41 -0400 (EDT)

mhw pushed a commit to branch core-updates
in repository guix.

commit ae7ba7312448fd13532d25df37db225559573055
Author: Mark H Weaver <address@hidden>
Date:   Fri Mar 23 02:23:16 2018 -0400

    gnu: gettext-minimal: Return #t from all phases.
    
    * gnu/packages/gettext.scm (gettext-minimal)[arguments]: Return #t from
    the 'patch-tests' and 'link-expat' phases.
---
 gnu/packages/gettext.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm
index f14ca27..9b45e84 100644
--- a/gnu/packages/gettext.scm
+++ b/gnu/packages/gettext.scm
@@ -89,14 +89,17 @@
 
                (substitute* "gettext-tools/src/project-id"
                  (("/bin/pwd")
-                  "pwd"))))))
+                  "pwd"))
+
+               #t))))
         (add-before 'configure 'link-expat
          (lambda _
            ;; Gettext defaults to opening expat via dlopen on
            ;; "Linux".  Change to link directly.
            (substitute* "gettext-tools/configure"
              (("LIBEXPAT=\"-ldl\"") "LIBEXPAT=\"-ldl -lexpat\"")
-             (("LTLIBEXPAT=\"-ldl\"") "LTLIBEXPAT=\"-ldl -lexpat\"")))))
+             (("LTLIBEXPAT=\"-ldl\"") "LTLIBEXPAT=\"-ldl -lexpat\""))
+           #t)))
 
        ;; When tests fail, we want to know the details.
        #:make-flags '("VERBOSE=yes")))



reply via email to

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