diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2025-09-11 11:17:14 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-09-11 12:52:10 +0300 |
| commit | fe2ed12e66097ee2befc55d7ae88e2a7c19f9e72 (patch) | |
| tree | e8db496bdbe787a029d82da5925e891bc6617eda /gnu/packages/ssh.scm | |
| parent | c37ad95418434f62ecb0834f3b1fb7319eed9a9e (diff) | |
gnu: libssh: Fix building on powerpc-linux.
* gnu/packages/ssh.scm (libssh)[arguments]: When building for
powerpc-linux add a phase to skip a test.
Change-Id: I15d1b0d556373e4b127c295ed2ee8f7c34513e9a
Diffstat (limited to 'gnu/packages/ssh.scm')
| -rw-r--r-- | gnu/packages/ssh.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index be9891a7ee7..f513ce68d80 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2012-2023, 2025 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org> -;;; Copyright © 2015, 2016, 2018-2022, 2024 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2015, 2016, 2018-2022, 2024, 2025 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2019 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016, 2021, 2023 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2016 Christine Lemmer-Webber <cwebber@dustycloud.org> @@ -175,6 +175,13 @@ file names. (lambda _ (substitute* "tests/unittests/CMakeLists.txt" (("torture_config_match_localnetwork") ""))))) + #~()) + #$@(if (target-ppc32?) + #~((add-after 'unpack 'skip-torture-test + ;; This test times out after 1500 seconds. + (lambda _ + (substitute* "tests/unittests/CMakeLists.txt" + (("torture_threads_pki_rsa") ""))))) #~())))) (native-inputs (list cmocka)) (inputs (list bash-minimal mit-krb5 openssl zlib)) |
