mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: findutils-boot0: Fix build on armhf-linux.
* gnu/packages/commencement.scm (findutils-boot0)[arguments]: Adjust 'skip-problematic-tests phase when building on armhf-linux to adjust the tests skipped. Change-Id: Ib014402cb07399788440115782ddca4adfe05193
This commit is contained in:
parent
a8625652e0
commit
82ddbe9a6e
1 changed files with 6 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
|
||||
;;; Copyright © 2014, 2015, 2017 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2017, 2018, 2019, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017, 2018, 2019, 2021, 2022, 2024 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018, 2019, 2020, 2021, 2022, 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2019-2022 Marius Bakke <marius@gnu.org>
|
||||
|
@ -2042,6 +2042,11 @@ (define findutils-boot0
|
|||
'(substitute* "gnulib-tests/Makefile"
|
||||
(("^XFAIL_TESTS =")
|
||||
"XFAIL_TESTS = test-fnmatch ")))
|
||||
("armhf-linux"
|
||||
'(substitute* "gnulib-tests/Makefile"
|
||||
(("^XFAIL_TESTS =")
|
||||
"XFAIL_TESTS = test-fnmatch ")
|
||||
(("test-pthread-thread\\$\\(EXEEXT\\)") "")))
|
||||
(_
|
||||
;; XXX: The pthread tests are known to fail at least on
|
||||
;; ARM; skip them.
|
||||
|
|
Loading…
Reference in a new issue