build-sys: Fix typo in manpages variable name

Some man pages were not installed due to a typo in the name of
the variable. This patch fixes the issue.

Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
This commit is contained in:
Stefan Berger 2019-01-16 09:40:29 -05:00 committed by Stefan Berger
parent 0b60a44790
commit 366af2ac1f

View File

@ -54,7 +54,7 @@ man3_MANS_generated = \
TPMLIB_VolatileAll_Store.3 \
TPM_Malloc.3
man3_MANS += $(man3_MANs_generated)
man3_MANS += $(man3_MANS_generated)
%.3 : %.pod
@pod2man -r "libtpms" \
@ -64,4 +64,4 @@ man3_MANS += $(man3_MANs_generated)
EXTRA_DIST = $(man3_MANS) $(man3_PODS)
CLEANFILES = $(man3_MANs_generated)
CLEANFILES = $(man3_MANS_generated)