From patchwork Mon Jan 24 22:22:26 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/2] matrix-gui-common: Support SVG icons Date: Mon, 24 Jan 2011 22:22:26 -0000 From: Jeff Lance X-Patchwork-Id: 357 Message-Id: <1295907746-7913-1-git-send-email-j-lance1@ti.com> To: openembedded-devel@lists.openembedded.org Cc: Jeff Lance * Add support to install *.svg icons as well as *.png icons * Bump up the recipe revision Signed-off-by: Jeff Lance --- recipes/ti/matrix-gui-common.inc | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/recipes/ti/matrix-gui-common.inc b/recipes/ti/matrix-gui-common.inc index 4185b34..c0edbfd 100644 --- a/recipes/ti/matrix-gui-common.inc +++ b/recipes/ti/matrix-gui-common.inc @@ -4,7 +4,7 @@ LICENSE = "BSD" SECTION = "multimedia" PRIORITY = "optional" -INC_PR = "r6" +INC_PR = "r7" COMPATIBLE_MACHINE = "(dm365|omapl138|omap3|ti816x)" @@ -34,6 +34,7 @@ do_install() { install -m 0644 ${S}/${PLATFORM}/html/* ${D}/${datadir}/matrix/html install -d ${D}/${datadir}/matrix/images install -m 0644 ${S}/images/*.png ${D}/${datadir}/matrix/images/ + install -m 0644 ${S}/images/*.svg ${D}/${datadir}/matrix/images/ }