[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: ninja: Patch hard-coded /bin/echo reference.
From: |
Marius Bakke |
Subject: |
01/01: gnu: ninja: Patch hard-coded /bin/echo reference. |
Date: |
Mon, 26 Feb 2018 14:40:04 -0500 (EST) |
mbakke pushed a commit to branch staging
in repository guix.
commit d0de4c40e24ee52e4382ee2ac82088932ab49099
Author: Marius Bakke <address@hidden>
Date: Mon Feb 26 19:57:53 2018 +0100
gnu: ninja: Patch hard-coded /bin/echo reference.
Solves a test failure on systems where open file limits are high enough for
this test to run. See <https://bugs.gnu.org/30601>.
* gnu/packages/ninja.scm (ninja)[arguments]: Add substitution.
---
gnu/packages/ninja.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/ninja.scm b/gnu/packages/ninja.scm
index adb2364..779b6ab 100644
--- a/gnu/packages/ninja.scm
+++ b/gnu/packages/ninja.scm
@@ -47,6 +47,7 @@
(replace 'configure
(lambda _
(substitute* "src/subprocess-posix.cc"
+ (("/bin/echo") (which "echo"))
(("/bin/sh") (which "sh")))
#t))
(replace 'build