From 3f0718885a97b2a954589913fff837afdcd4063f Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Mon, 28 Dec 2020 11:30:59 +0100 Subject: [PATCH] Make: Get SHELL from Autoconf The default SHELL isn't POSIX on some systems, such as Solaris. Use the one Autoconf chooses instead of the default. Signed-off-by: Markus Armbruster --- GNUmakefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index 4d11aed22..22d72269c 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -28,7 +28,7 @@ # GNUmakefile.in: Makefile template for configure # # Known contributors to this file: -# Markus Armbruster, 2005-2009 +# Markus Armbruster, 2005-2020 # # The real meat is in Make.mk, which see. @@ -68,6 +68,7 @@ INSTALL_DATA := @INSTALL_DATA@ INSTALL_PROGRAM := @INSTALL_PROGRAM@ NROFF := @NROFF@ RANLIB := @RANLIB@ +SHELL := @SHELL@ prefix := @prefix@ exec_prefix := @exec_prefix@ -- 2.43.0