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.
master
Mark H Weaver 2018-03-23 02:23:16 -04:00
parent e3eb53e749
commit ae7ba73124
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 5 additions and 2 deletions

View File

@ -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")))