[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/05: gnu: gash-utils: Fix build.
From: |
guix-commits |
Subject: |
01/05: gnu: gash-utils: Fix build. |
Date: |
Sun, 15 Oct 2023 06:30:48 -0400 (EDT) |
lilyp pushed a commit to branch master
in repository guix.
commit 48286d4da4385c6284e8458f5d03462e44034373
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Fri Oct 6 10:00:16 2023 +0200
gnu: gash-utils: Fix build.
* gnu/packages/shells.scm (gash-utils)[arguments]: Add ‘skip-failing-tests’
phase.
[native-inputs]: Add autoconf and automake.
---
gnu/packages/shells.scm | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
index 8042fab12f..9e6bf6693f 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -938,8 +938,16 @@ as part of the Guix bootstrap process.")
(base32
"18ylb54l9lmaynapbncc1zhbsirhihznrxihhxgqrpqgyjkfbap6"))))
(build-system gnu-build-system)
+ (arguments
+ (list
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'skip-failing-tests
+ (lambda _
+ (substitute* "Makefile.am"
+ (("tests/sort\\.org") ""))
+ (for-each delete-file '("configure" "Makefile.in")))))))
(native-inputs
- (list pkg-config))
+ (list autoconf automake pkg-config))
(inputs
(list guile-3.0 gash))
(home-page "https://savannah.nongnu.org/projects/gash/")