gnu: libtool: Correct replacement shebang.

* gnu/packages/autotools.scm (libtool)[arguments]: Correct replacement
shebang in 'restore-ltmain-shebang' phase.
This commit is contained in:
Leo Famulari 2017-01-05 11:31:34 -05:00
parent 78c172a56e
commit 92e779592d
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -334,7 +334,7 @@ (define-public libtool
(add-after 'patch-source-shebangs 'restore-ltmain-shebang (add-after 'patch-source-shebangs 'restore-ltmain-shebang
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
(substitute* "build-aux/ltmain.in" (substitute* "build-aux/ltmain.in"
(("^#!.*/bin/sh$") "/bin/sh")) (("^#!.*/bin/sh$") "#!/bin/sh"))
#t))))) #t)))))
(synopsis "Generic shared library support tools") (synopsis "Generic shared library support tools")