diff options
author | Marius Bakke <marius@gnu.org> | 2022-11-26 15:39:18 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-26 15:39:18 +0100 |
commit | fe99fe84f0fe5b4cd97768c6dbb60a07404f24a1 (patch) | |
tree | c87214ce4b80f0eb9a068553cc25f201bddae66c /gnu/packages/gettext.scm | |
parent | 2e68be4ca88368c94b1eb1123ef437605b7b904f (diff) | |
parent | c457c715a83358fa1557f703b1e459435fb1a259 (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/gettext.scm')
-rw-r--r-- | gnu/packages/gettext.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm index d606acf798..5df30c4be3 100644 --- a/gnu/packages/gettext.scm +++ b/gnu/packages/gettext.scm @@ -120,13 +120,19 @@ "coreutils-gnulib-tests.patch"))))) '()) + #$@(if (hurd-target?) + #~((substitute* + "gettext-tools/gnulib-tests/Makefile.in" + ;; See 'coreutils' for the rationale. + ((" test-tls\\$\\(EXEEXT\\) ") " "))) + '()) + #t))))) ;; When tests fail, we want to know the details. #:make-flags #~'("VERBOSE=yes" #$@(if (hurd-target?) - ;; Linking to libgettextlib.so makes test-raise fail - '("XFAIL_TESTS=test-raise") + '("XFAIL_TESTS=test-perror2") '())))) (home-page "https://www.gnu.org/software/gettext/") (synopsis |