me
/
guix
Archived
1
0
Fork 0

gnu: html2text: Fix cross-compilation.

* gnu/packages/textutils.scm (html2text)[arguments]: Set $CXX to
the correct (CC-FOR-TARGET).
master
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
1 changed files with 2 additions and 1 deletions

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