Configurations: Identify the shell variables around MANSUFFIX
authorSebastian Andrzej Siewior <sebastian@breakpoint.cc>
Sat, 25 Apr 2020 18:29:48 +0000 (20:29 +0200)
committerRichard Levitte <levitte@openssl.org>
Tue, 28 Apr 2020 10:09:11 +0000 (12:09 +0200)
commitcf86057a1acd13b13c9bd8f7b8a14bbc0e3ffd56
treebc7161db02b171d9239f48d1e26a2b5997a78c55
parentc9c78d271e650a34753941507b9e13806ce38560
Configurations: Identify the shell variables around MANSUFFIX

With MANSUFFIX=A the statement '$$fn$(MANSUFFIX)' is reaplaces with
'$fnA' and left empty because the `fnA' variables is not recognized
within the shell.

With {} around fn it is then bocomes ${fn}A and works as expected.
While here, add the MANSUFFIX to the ECHO line so it is properly printed
during build.

Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/11643)
Configurations/unix-Makefile.tmpl