diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2016-03-03 13:54:11 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-03-07 13:02:18 +0100 |
commit | 884c7871ca0167d0fba1699cbca1d5f25d201a1e (patch) | |
tree | 961efcc7f0a4df3e0082fddfec3263b7dc60c75c /meta-oe/recipes-support | |
parent | 907504c948bfae124f87cdfdfbcd32183f914d07 (diff) | |
download | meta-openembedded-884c7871ca0167d0fba1699cbca1d5f25d201a1e.tar.gz |
freerdp: properly fix QA issue
* without x11, wayland, directfb enabled there is no bindir directory
so the error wasn't about empty /usr/bin/ being unpackaged, but there was
/usr/bin binary which was winpr-makecert installed above, fix by creating
the directory first
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support')
-rw-r--r-- | meta-oe/recipes-support/freerdp/freerdp_git.bb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta-oe/recipes-support/freerdp/freerdp_git.bb b/meta-oe/recipes-support/freerdp/freerdp_git.bb index 4c81b5771..339a053ca 100644 --- a/meta-oe/recipes-support/freerdp/freerdp_git.bb +++ b/meta-oe/recipes-support/freerdp/freerdp_git.bb | |||
@@ -59,13 +59,10 @@ PACKAGES_DYNAMIC += "^libfreerdp-plugin-.*" | |||
59 | 59 | ||
60 | # we will need winpr-makecert to generate TLS certificates | 60 | # we will need winpr-makecert to generate TLS certificates |
61 | do_install_append () { | 61 | do_install_append () { |
62 | install -d ${D}${bindir} | ||
62 | install -m755 winpr/tools/makecert/cli/winpr-makecert ${D}${bindir} | 63 | install -m755 winpr/tools/makecert/cli/winpr-makecert ${D}${bindir} |
63 | rm -rf ${D}${libdir}/cmake | 64 | rm -rf ${D}${libdir}/cmake |
64 | rm -rf ${D}${libdir}/freerdp | 65 | rm -rf ${D}${libdir}/freerdp |
65 | # without x11, wayland, directfb enabled this directory will be empty | ||
66 | # causing QA error: ERROR: freerdp-1.2.5+gitrAUTOINC+62da9d28c6-r0 do_package: QA Issue: freerdp: Files/directories were installed but not shipped in any package: | ||
67 | # /usr/bin | ||
68 | rmdir ${D}${bindir} --ignore-fail-on-non-empty | ||
69 | } | 66 | } |
70 | 67 | ||
71 | python populate_packages_prepend () { | 68 | python populate_packages_prepend () { |