From: Philippe Coval Date: Sat, 17 Dec 2016 11:12:02 +0000 (+0100) Subject: tiff: Fix QA issue by installing dirs one per one X-Git-Url: http://review.tizen.org/git/?p=scm%2Fbb%2Fmeta-tizen.git;a=commitdiff_plain;h=b0c5887dc1e2640aa2dc634e66af0d87949f1989 tiff: Fix QA issue by installing dirs one per one This change will work on shells that do not support "expandable path" and will fail to build and report warning message like this: WARNING: QA Issue: tiff: Files/directories were installed but not shipped /{ /{/usr /{/usr/share /{/usr/share/man /{/usr/share/man/{man1,man3},usr /{/usr/share/man/{man1,man3},usr/{bin,lib,include}} [installed-vs-shipped] Signed-off-by: Philippe Coval Change-Id: I6f5bb17f6631a3466d274dc17eac28f42f9de6e9 --- diff --git a/meta-tizen-common-base/recipes-multimedia/tiff/tiff.inc b/meta-tizen-common-base/recipes-multimedia/tiff/tiff.inc index 6575542..4391bea 100644 --- a/meta-tizen-common-base/recipes-multimedia/tiff/tiff.inc +++ b/meta-tizen-common-base/recipes-multimedia/tiff/tiff.inc @@ -82,9 +82,12 @@ do_install() { export LANG unset DISPLAY rm -rf ${D} - mkdir -p ${D} - mkdir -p ${D}/{${mandir}/{man1,man3},usr/{bin,lib,include}} + install -d ${D}/${mandir}/man1 + install -d ${D}/${mandir}/man3 + install -d ${D}/usr/bin + install -d ${D}/usr/include + install -d ${D}/usr/lib oe_runmake \ DESTDIR=${D} \