mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: tcsh: Skip substitution tests on the Hurd.
* gnu/packages/shells.scm (tcsh)[arguments]: When building natively on the Hurd, add phase 'skip-tests'.
This commit is contained in:
parent
7ab9c0f99b
commit
d04db1249c
1 changed files with 8 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
;;; Copyright © 2019 Meiyo Peng <meiyo.peng@gmail.com>
|
||||
;;; Copyright © 2019 Timothy Sample <samplet@ngyro.com>
|
||||
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2019, 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2019, 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
||||
;;; Copyright © 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
|
@ -416,6 +416,13 @@ (define-public tcsh
|
|||
(("CC_FOR_GETHOST=\"cc\"")
|
||||
"CC_FOR_GETHOST=\"gcc\"")))))
|
||||
#~())
|
||||
#$@(if (system-hurd?)
|
||||
#~((add-after 'unpack 'skip-tests
|
||||
(lambda _
|
||||
(substitute* "tests/testsuite.at"
|
||||
(("m4_include\\(\\[subst.at\\]\\)" all)
|
||||
(string-append "# " all))))))
|
||||
#~())
|
||||
(add-before 'check 'patch-test-scripts
|
||||
(lambda _
|
||||
;; Take care of pwd
|
||||
|
|
Loading…
Reference in a new issue