openssh: Fix build with compressed man pages

This commit is contained in:
Fredrik Fornwall 2019-01-29 09:25:09 +01:00
parent 5480bfcba4
commit eda2429656

View File

@ -85,7 +85,7 @@ termux_step_post_massage () {
# Verify that we have man pages packaged (#1538).
local manpage
for manpage in ssh-keyscan.1 ssh-add.1 scp.1 ssh-agent.1 ssh.1; do
if [ ! -f share/man/man1/$manpage ]; then
if [ ! -f share/man/man1/$manpage.gz ]; then
termux_error_exit "Missing man page $manpage"
fi
done