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"
|
(substitute* "gettext-tools/src/project-id"
|
||||||
(("/bin/pwd")
|
(("/bin/pwd")
|
||||||
"pwd"))))))
|
"pwd"))
|
||||||
|
|
||||||
|
#t))))
|
||||||
(add-before 'configure 'link-expat
|
(add-before 'configure 'link-expat
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Gettext defaults to opening expat via dlopen on
|
;; Gettext defaults to opening expat via dlopen on
|
||||||
;; "Linux". Change to link directly.
|
;; "Linux". Change to link directly.
|
||||||
(substitute* "gettext-tools/configure"
|
(substitute* "gettext-tools/configure"
|
||||||
(("LIBEXPAT=\"-ldl\"") "LIBEXPAT=\"-ldl -lexpat\"")
|
(("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.
|
;; When tests fail, we want to know the details.
|
||||||
#:make-flags '("VERBOSE=yes")))
|
#:make-flags '("VERBOSE=yes")))
|
||||||
|
|
Loading…
Reference in New Issue