Browse Source

openssh: Fix build with compressed man pages

android-5
Fredrik Fornwall 6 years ago
parent
commit
e52af0af7b
  1. 2
      packages/openssh/build.sh

2
packages/openssh/build.sh

@ -85,7 +85,7 @@ termux_step_post_massage () {
# Verify that we have man pages packaged (#1538). # Verify that we have man pages packaged (#1538).
local manpage local manpage
for manpage in ssh-keyscan.1 ssh-add.1 scp.1 ssh-agent.1 ssh.1; do 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" termux_error_exit "Missing man page $manpage"
fi fi
done done

Loading…
Cancel
Save