mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: libtool: Make sure all phases return a successful value.
* gnu/packages/autotools.scm (libtool)[arguments]: Return #t from 'pre-check' and 'restore-ltmain-shebang' phases.
This commit is contained in:
parent
c5862bda95
commit
78c172a56e
1 changed files with 4 additions and 2 deletions
|
@ -329,11 +329,13 @@ (define-public libtool
|
|||
(let ((bash (assoc-ref inputs "bash")))
|
||||
(substitute* "tests/testsuite"
|
||||
(("/bin/sh")
|
||||
(string-append bash "/bin/sh"))))))
|
||||
(string-append bash "/bin/sh")))
|
||||
#t)))
|
||||
(add-after 'patch-source-shebangs 'restore-ltmain-shebang
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "build-aux/ltmain.in"
|
||||
(("^#!.*/bin/sh$") "/bin/sh")))))))
|
||||
(("^#!.*/bin/sh$") "/bin/sh"))
|
||||
#t)))))
|
||||
|
||||
(synopsis "Generic shared library support tools")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue