diff options
author | Kai Kang <kai.kang@windriver.com> | 2020-02-12 16:34:45 +0800 |
---|---|---|
committer | Jia Zhang <zhang.jia@linux.alibaba.com> | 2020-02-13 13:54:11 +0800 |
commit | c901ee5ff8cc110fd48a4b8a3dcd9c8862fddf44 (patch) | |
tree | cb3609c939542927ca4f3f900ad6c0d8ea476d66 | |
parent | 8302e3c479154157667e22e9d7c5461c966b4586 (diff) | |
download | meta-secure-core-c901ee5ff8cc110fd48a4b8a3dcd9c8862fddf44.tar.gz |
tpm-tools: inherit perlnative.bbclass
tpm-tools calls pod2man to produce manual files. But pod2man has been
removed from hosttools in oe-core. So it fails occasionally when in some
certain condition .pod file is newer than corresponding man page files
that man files need to be reproduced:
| make[3]: Entering directory 'TOPDIR/tmp-glibc/work/ppc7400-wrs-linux/tpm-tools/1.3.9.1+gitAUTOINC+bdf9f1bc8f-r0/git/man/man8'
| /bin/bash: pod2man: command not found
| make[3]: *** [Makefile:575: tpm_nvwrite.8] Error 127
Inherit perlnative to fix such issue.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
-rw-r--r-- | meta-tpm/recipes-tpm/tpm-tools/tpm-tools_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-tpm/recipes-tpm/tpm-tools/tpm-tools_git.bb b/meta-tpm/recipes-tpm/tpm-tools/tpm-tools_git.bb index cb59e8c..04e4880 100644 --- a/meta-tpm/recipes-tpm/tpm-tools/tpm-tools_git.bb +++ b/meta-tpm/recipes-tpm/tpm-tools/tpm-tools_git.bb | |||
@@ -24,7 +24,7 @@ SRCREV = "bdf9f1bc8f63cd6fc370c2deb58d03ac55079e84" | |||
24 | 24 | ||
25 | S = "${WORKDIR}/git" | 25 | S = "${WORKDIR}/git" |
26 | 26 | ||
27 | inherit autotools-brokensep gettext | 27 | inherit autotools-brokensep gettext perlnative |
28 | 28 | ||
29 | do_configure_prepend() { | 29 | do_configure_prepend() { |
30 | mkdir -p po | 30 | mkdir -p po |