From: Todd C. Miller Date: Wed, 2 Jun 2010 14:23:47 +0000 (-0400) Subject: Use value of SHELL from configure in Makefile X-Git-Tag: SUDO_1_7_3~139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f39a7fe8908aed18e42274eba9401832e0032ba;p=sudo Use value of SHELL from configure in Makefile --HG-- branch : 1.7 --- diff --git a/Makefile.in b/Makefile.in index c331abe8a..a8601d498 100644 --- a/Makefile.in +++ b/Makefile.in @@ -98,7 +98,7 @@ DEFS = @OSDEFS@ -D_PATH_SUDOERS=\"$(sudoersdir)/sudoers\" -DSUDOERS_UID=$(sudoer #### End of system configuration section. #### -SHELL = /bin/sh +SHELL = @SHELL@ PROGS = @PROGS@ diff --git a/configure.in b/configure.in index dd59d6f5e..c1e78048b 100644 --- a/configure.in +++ b/configure.in @@ -13,6 +13,7 @@ dnl dnl Variables that get substituted in the Makefile and man pages dnl AC_SUBST(HAVE_BSM_AUDIT) +AC_SUBST(SHELL) AC_SUBST(LIBTOOL) AC_SUBST(CFLAGS) AC_SUBST(PROGS)