gnu: swig: Skip tests when cross-compiling.
* gnu/packages/swig.scm (swig)[arguments]: Adjust #:tests? to skip tests when cross-compiling.
This commit is contained in:
parent
c11afc4677
commit
6bda806416
1 changed files with 3 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
;;; Copyright © 2013, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2018, 2021 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2018, 2021 Marius Bakke <marius@gnu.org>
|
||||||
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2019, 2023 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
|
@ -56,7 +56,8 @@
|
||||||
perl))
|
perl))
|
||||||
;;("python" ,python-wrapper)
|
;;("python" ,python-wrapper)
|
||||||
(inputs (list pcre))
|
(inputs (list pcre))
|
||||||
(arguments (list #:tests? (not (target-hurd?))))
|
(arguments (list #:tests? (not (or (target-hurd?)
|
||||||
|
(%current-target-system)))))
|
||||||
(home-page "https://swig.org/")
|
(home-page "https://swig.org/")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Interface compiler that connects C/C++ code to higher-level languages")
|
"Interface compiler that connects C/C++ code to higher-level languages")
|
||||||
|
|
Reference in a new issue