summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/icon-naming-utils
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2011-07-18 08:57:31 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-21 10:59:18 +0100
commitfe7db148c2f0286c1e4106d718c650f86cbb5030 (patch)
treeb92c9b00f943e24de5856bbc477f35ded0c558be /meta/recipes-devtools/icon-naming-utils
parent6a52bad2f44f0e919baa89a02f88855c925da6d5 (diff)
downloadpoky-fe7db148c2f0286c1e4106d718c650f86cbb5030.tar.gz
icon-naming-utils-native: Fix long path to perl in icon-name-mapping
This is 5396e0868cf89787746fa6341ddb1f271a770595 in oe.dev but here we instead use the nativeperl wrapper. (From OE-Core rev: a788f8262481706d5311eb9b2573f2d69ab2a5d6) Signed-off-by: Tom Rini <tom_rini@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/icon-naming-utils')
-rw-r--r--meta/recipes-devtools/icon-naming-utils/icon-naming-utils-native_0.8.7.bb7
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-devtools/icon-naming-utils/icon-naming-utils-native_0.8.7.bb b/meta/recipes-devtools/icon-naming-utils/icon-naming-utils-native_0.8.7.bb
index d34fb0315d..4760c9627e 100644
--- a/meta/recipes-devtools/icon-naming-utils/icon-naming-utils-native_0.8.7.bb
+++ b/meta/recipes-devtools/icon-naming-utils/icon-naming-utils-native_0.8.7.bb
@@ -1,6 +1,6 @@
1LICENSE = "GPLv2" 1LICENSE = "GPLv2"
2DEPENDS = "libxml-simple-perl-native" 2DEPENDS = "libxml-simple-perl-native"
3PR = "r2" 3PR = "r3"
4 4
5LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" 5LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
6 6
@@ -9,3 +9,8 @@ SRC_URI = "http://tango.freedesktop.org/releases/icon-naming-utils-0.8.7.tar.gz"
9S = "${WORKDIR}/icon-naming-utils-${PV}" 9S = "${WORKDIR}/icon-naming-utils-${PV}"
10 10
11inherit autotools native perlnative 11inherit autotools native perlnative
12
13do_configure_append() {
14 # Make sure we use our nativeperl wrapper.
15 sed -i -e "1s:#!.*:#!/usr/bin/env nativeperl:" ${S}/icon-name-mapping.pl.in
16}