diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-01-22 13:10:56 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-01-22 13:13:36 +0100 |
commit | c8b44fc10717a106b305d66e95ea27d1a3be45f5 (patch) | |
tree | f85092a166b347bc45f9e3ef778a50a95721da5c /gnu/packages/base.scm | |
parent | 8a296947a6bdd173faeb5d7defba7069b537ddd4 (diff) | |
download | patches-c8b44fc10717a106b305d66e95ea27d1a3be45f5.tar patches-c8b44fc10717a106b305d66e95ea27d1a3be45f5.tar.gz |
gnu: sed: Do not attempt to rebuild 'doc/sed.1'.
* gnu/packages/base.scm (sed)[arguments]: Add 'dont-rebuild-sed.1'
phase.
[native-inputs]: Remove.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index dc6ce4f3d4..f6946f3c9e 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -131,6 +131,15 @@ including, for example, recursive directory searching.") (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'dont-rebuild-sed.1 + (lambda _ + ;; Make sure we do not attempt to rebuild 'doc/sed.1', which does + ;; not work when cross-compiling because we cannot run 'sed'. + ;; This is fixed upstream as commit a0a25e3. + (substitute* "Makefile.in" + (("^doc/sed\\.1:.*") + "doc/sed.1:\n")) + #t)) (add-before 'patch-source-shebangs 'patch-test-suite (lambda* (#:key inputs #:allow-other-keys) (patch-makefile-SHELL "testsuite/Makefile.tests") @@ -139,8 +148,6 @@ including, for example, recursive directory searching.") (("/bin/sh") (which "sh"))) #t))))) - (native-inputs - `(("perl" ,perl))) ; for build-aux/help2man (description "Sed is a non-interactive, text stream editor. It receives a text input from a file or from standard input and it then applies a series of text |