diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2023-07-20 17:43:15 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2023-07-21 13:19:33 +0300 |
| commit | 696b22141cb53b9797c80f49079c0a0fcd60ba64 (patch) | |
| tree | fc715570c837532da5fd03470b0c62f46a32bccc /gnu/packages | |
| parent | 0867cdc5148ed9c066f73d4213ad342bd332c070 (diff) | |
gnu: parted: Skip tests when cross-compiling.
* gnu/packages/disk.scm (parted)[arguments]: Adjust #:tests? to skip
tests when cross-compiling.
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/disk.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 35ffcf173eb..21e8775e832 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | ;;; Copyright © 2015 Mathieu Lirzin <mthl@gnu.org> | 3 | ;;; Copyright © 2015 Mathieu Lirzin <mthl@gnu.org> |
| 4 | ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> | 4 | ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> |
| 5 | ;;; Copyright © 2016, 2018–2022 Tobias Geerinckx-Rice <me@tobias.gr> | 5 | ;;; Copyright © 2016, 2018–2022 Tobias Geerinckx-Rice <me@tobias.gr> |
| 6 | ;;; Copyright © 2016, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il> | 6 | ;;; Copyright © 2016, 2019-2021, 2023 Efraim Flashner <efraim@flashner.co.il> |
| 7 | ;;; Copyright © 2016, 2023 Janneke Nieuwenhuizen <janneke@gnu.org> | 7 | ;;; Copyright © 2016, 2023 Janneke Nieuwenhuizen <janneke@gnu.org> |
| 8 | ;;; Copyright © 2016 Roel Janssen <roel@gnu.org> | 8 | ;;; Copyright © 2016 Roel Janssen <roel@gnu.org> |
| 9 | ;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com> | 9 | ;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com> |
| @@ -259,7 +259,8 @@ tmpfs/ramfs filesystems.") | |||
| 259 | #:configure-flags (if (target-hurd?) | 259 | #:configure-flags (if (target-hurd?) |
| 260 | #~'("--disable-device-mapper") | 260 | #~'("--disable-device-mapper") |
| 261 | #~'()) | 261 | #~'()) |
| 262 | #:tests? (not (target-hurd?)) | 262 | #:tests? (not (or (target-hurd?) |
| 263 | (%current-target-system))) | ||
| 263 | #:phases | 264 | #:phases |
| 264 | #~(modify-phases %standard-phases | 265 | #~(modify-phases %standard-phases |
| 265 | (add-after 'unpack 'fix-locales-and-python | 266 | (add-after 'unpack 'fix-locales-and-python |
