diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2023-06-25 22:28:16 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-07-02 02:00:01 +0200 |
commit | 047b7e55b315b8609e6bc2eaf18d5de36b155735 (patch) | |
tree | 5cae957e2e7e169ecfefa3865e7e272768305c3f /gnu/packages/astronomy.scm | |
parent | 5df23828429959fb9271678a7f5704be468e273c (diff) |
gnu: missfits: Fix build.
* gnu/packages/astronomy.scm (missfits)[arguments]:
Add CPPFLAGS to pass build with GCC 10.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
Diffstat (limited to 'gnu/packages/astronomy.scm')
-rw-r--r-- | gnu/packages/astronomy.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 04cde447c4..27fe4260ec 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2678,6 +2678,13 @@ PixInsight. It implements XISF 1.0 specification.") (sha256 (base32 "04jrd7fsvzr14vdmwgj2f6v97gdcfyjyz6jppml3ghr9xh12jxv5")))) (build-system gnu-build-system) + (arguments + (list + #:configure-flags + #~(list + ;; Address this link error: + ;; ld: ... multiple definition of ... first defined here + "CPPFLAGS=-fcommon"))) (home-page "https://www.astromatic.net/software/missfits") (synopsis "FITS files Maintenance program") (description |