Merge remote-tracking branch core-updates-frozen into core-updates

This commit is contained in:
Mathieu Othacehe 2021-09-22 06:25:20 +00:00
commit 0cccc2f52c
No known key found for this signature in database
GPG key ID: 8354763531769CA6
506 changed files with 305419 additions and 215120 deletions

View file

@ -132,7 +132,18 @@ know anything about Autoconf or M4.")
(find-files "bin"
(lambda (file stat)
(executable-file? file)))))
#t))))))))
#t))
(add-after 'install 'unpatch-shebangs
(lambda* (#:key outputs #:allow-other-keys)
;; Scripts that "autoconf -i" installs (config.guess,
;; config.sub, and install-sh) must use a regular shebang
;; rather than a reference to the store. Restore it.
;; TODO: Move this phase to 'autoconf-2.69'.
(let* ((out (assoc-ref outputs "out"))
(build-aux (string-append
out "/share/autoconf/build-aux")))
(substitute* (find-files build-aux)
(("^#!.*/bin/sh") "#!/bin/sh")))))))))))
(define-public autoconf autoconf-2.69)