diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-21 14:19:48 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-22 16:54:36 +0000 |
commit | 4dce60bd7dcbd97c0fba88b1ff392fc32a8cf95f (patch) | |
tree | 32f43353f023343064522d00e8366e1ea5364684 /meta/recipes-extended/texinfo/texinfo_4.13a.bb | |
parent | 55f1e47eaaa6ad4f2e16facd1a0a53293344a6e9 (diff) | |
download | poky-4dce60bd7dcbd97c0fba88b1ff392fc32a8cf95f.tar.gz |
texinfo: Fix case where ${B} != ${S}
The install function needs to reference generated files in ${B}.
(From OE-Core rev: feebca46f3ef798ab4a203bc0b9419d883feaee7)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/texinfo/texinfo_4.13a.bb')
-rw-r--r-- | meta/recipes-extended/texinfo/texinfo_4.13a.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/texinfo/texinfo_4.13a.bb b/meta/recipes-extended/texinfo/texinfo_4.13a.bb index 960cc5ea64..febb85a143 100644 --- a/meta/recipes-extended/texinfo/texinfo_4.13a.bb +++ b/meta/recipes-extended/texinfo/texinfo_4.13a.bb | |||
@@ -43,7 +43,7 @@ do_compile_prepend() { | |||
43 | 43 | ||
44 | do_install_append() { | 44 | do_install_append() { |
45 | mkdir -p ${D}${datadir}/${tex_texinfo} | 45 | mkdir -p ${D}${datadir}/${tex_texinfo} |
46 | install -p -m644 doc/texinfo.tex doc/txi-??.tex ${D}${datadir}/${tex_texinfo} | 46 | install -p -m644 ${S}/doc/texinfo.tex ${S}/doc/txi-??.tex ${D}${datadir}/${tex_texinfo} |
47 | } | 47 | } |
48 | do_install_append_class-native() { | 48 | do_install_append_class-native() { |
49 | install -m 755 info/makedoc ${D}${bindir} | 49 | install -m 755 info/makedoc ${D}${bindir} |