gnu: ed: Patch /bin/sh in the test suite.
* gnu/packages/ed.scm (ed): Add `patch-test-suite' phase.
This commit is contained in:
parent
4dede022fd
commit
9589eecb40
@ -1,5 +1,6 @@
|
|||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
|
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
|
||||||
|
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
@ -37,7 +38,13 @@
|
|||||||
(base32
|
(base32
|
||||||
"18gvhyhwpabmgv4lh21lg8vl3z7acdyhh2mr2kj9g75wksj39pcp"))))
|
"18gvhyhwpabmgv4lh21lg8vl3z7acdyhh2mr2kj9g75wksj39pcp"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments '(#:configure-flags '("CC=gcc")))
|
(arguments
|
||||||
|
'(#:configure-flags '("CC=gcc")
|
||||||
|
#:phases (alist-cons-before 'patch-source-shebangs 'patch-test-suite
|
||||||
|
(lambda _
|
||||||
|
(substitute* "testsuite/check.sh"
|
||||||
|
(("/bin/sh") (which "sh"))))
|
||||||
|
%standard-phases)))
|
||||||
(home-page "http://www.gnu.org/software/ed/")
|
(home-page "http://www.gnu.org/software/ed/")
|
||||||
(synopsis
|
(synopsis
|
||||||
"GNU ed, an implementation of the standard Unix editor")
|
"GNU ed, an implementation of the standard Unix editor")
|
||||||
|
Loading…
Reference in New Issue
Block a user