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.
This commit is contained in:
parent
e3eb53e749
commit
ae7ba73124
|
@ -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")))
|
||||
|
|
Loading…
Reference in New Issue