From 8c7685c65def40eb09367e8110c55ecc7f493249 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 24 Apr 2021 13:50:37 +0100 Subject: [PATCH] Add the psusan man page to the installed list. Previously, 'make install' would install psusan itself in .../bin, but not install psusan.1 in .../share/man/man1. That's not a sensible combination. Either it's a test utility so we should install neither, or it's a fully supported official utility so we should install both. It's the latter. Man page is now installed, along with the binary. --- Recipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Recipe b/Recipe index 49f6d1b9..ea561b63 100644 --- a/Recipe +++ b/Recipe @@ -187,10 +187,10 @@ install-strip: # List the man pages for the automake makefile. !begin am if HAVE_GTK -man1_MANS = doc/plink.1 doc/pscp.1 doc/psftp.1 doc/puttygen.1 \ +man1_MANS = doc/plink.1 doc/pscp.1 doc/psftp.1 doc/puttygen.1 doc/psusan.1 \ doc/pageant.1 doc/pterm.1 doc/putty.1 doc/puttytel.1 else -man1_MANS = doc/plink.1 doc/pscp.1 doc/psftp.1 doc/puttygen.1 +man1_MANS = doc/plink.1 doc/pscp.1 doc/psftp.1 doc/puttygen.1 doc/psusan.1 endif !end