diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-06-05 10:08:43 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:05 +0200 |
commit | 82ddbe9a6eb52fd2b311c46d113aeb24f286c2cf (patch) | |
tree | 441930d4cf4a3079f78027f2df5a900eb821d5d7 /gnu | |
parent | a8625652e09fb4db2afdf34772f311d6119b98b3 (diff) | |
download | guix-82ddbe9a6eb52fd2b311c46d113aeb24f286c2cf.tar.gz guix-82ddbe9a6eb52fd2b311c46d113aeb24f286c2cf.zip |
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
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/commencement.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 9017788fe5..d4b5fa2ab0 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -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 @@ exec " gcc "/bin/" program '(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. |