[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#40902: [PATCH v2] gnu: Add edid-decode.
From: |
Mathieu Othacehe |
Subject: |
bug#40902: [PATCH v2] gnu: Add edid-decode. |
Date: |
Wed, 29 Apr 2020 11:41:07 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) |
Hello Brice,
> + (when target
> + (substitute* "Makefile"
> + (("\\$\\(CXX\\)")
> + (string-append (assoc-ref native-inputs "gcc")
> "/bin/g++"))))
Doing that you are still using the native compiler. I changed it to:
--8<---------------cut here---------------start------------->8---
(when target
(substitute* "Makefile"
(("\\$\\(CXX\\)")
(string-append target "-g++"))))
--8<---------------cut here---------------end--------------->8---
and pushed!
Thanks,
Mathieu