Hi Lars,
On Fri, Jan 19 2024, Lars Rustand wrote:
> ./autogen.sh: ./configure: /bin/sh: bad interpreter: No such file or directory
I would use something like this [1]
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'configure 'provide-shell
(lambda _
(setenv "CONFIG_SHELL" (which "sh")))))))
(native-inputs (list bash))
although the (which "sh") is kind of lazy and should probably be
replaced by something like
#$(file-append bash "/bin/sh")
Kind regards
Felix
[1]
https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/config_002estatus-Invocation.html