diff options
author | Darren Tucker <dtucker@dtucker.net> | 2022-04-01 05:56:54 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2022-04-01 05:56:54 +0200 |
commit | 34c7018c316af4773e432066de28d0ef9d0888cd (patch) | |
tree | 5c338ae97c2fc0fbcba3e7ee16ff02cbd97a585e /Makefile.in | |
parent | Skip slow tests on (very) slow test targets. (diff) | |
download | openssh-34c7018c316af4773e432066de28d0ef9d0888cd.tar.xz openssh-34c7018c316af4773e432066de28d0ef9d0888cd.zip |
Set Makefile SHELL as determined by configure.
This should improve compatibility for users with non-POSIX shells. If
using Makefile.in directly (eg make -f Makefile.in distprep) then SHELL
will need to be specified on the command line (along with MANFMT in that
particular case). ok djm@
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index a9b802b7d..7250d3f31 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,5 +1,4 @@ -# uncomment if you run a non bourne compatible shell. Ie. csh -#SHELL = @SH@ +SHELL=@SH@ AUTORECONF=autoreconf |