3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: html2text: Fix cross-compilation.

* gnu/packages/textutils.scm (html2text)[arguments]: Set $CXX to
the correct (CC-FOR-TARGET).
This commit is contained in:
Tobias Geerinckx-Rice 2021-04-27 13:57:35 +02:00
parent b0020938e1
commit 5c81cbda5e
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1038,7 +1038,8 @@ indentation.
;; The configure script is not from autotools and does not accept
;; --style options. There is no proper error handling.
(lambda* (#:key outputs #:allow-other-keys)
(invoke "./configure"))))))
(invoke "./configure"
(string-append "CXX=" ,(cxx-for-target))))))))
(home-page "https://github.com/grobian/html2text")
(synopsis "HTML to plain text converter")
(description