summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Heinold <henning@itconsulting-heinold.de>2014-06-09 23:21:28 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-03 13:47:18 +0100
commitaebbf8c8f3fadc477c70f0c958c28fddc773b974 (patch)
treee03438751bc374614c04397407b8495c03114d67
parentc4f1f0f491f988901bfd6965f7d10f60cb94a76f (diff)
downloadpoky-aebbf8c8f3fadc477c70f0c958c28fddc773b974.tar.gz
perf: fix broken shell comparsion in do_install
The patch was sponsored by sysmocom (From OE-Core rev: f7650cf40492ac5cfe724177d9d9e58d89c54252) Signed-off-by: Henning Heinold <henning@itconsulting-heinold.de> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-kernel/perf/perf.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb
index ef21b6c9c2..9996f663cd 100644
--- a/meta/recipes-kernel/perf/perf.bb
+++ b/meta/recipes-kernel/perf/perf.bb
@@ -112,7 +112,7 @@ do_install() {
112 unset CFLAGS 112 unset CFLAGS
113 oe_runmake DESTDIR=${D} install 113 oe_runmake DESTDIR=${D} install
114 # we are checking for this make target to be compatible with older perf versions 114 # we are checking for this make target to be compatible with older perf versions
115 if [ "${@perf_feature_enabled('perf-scripting', 1, 0, d)}" = "1" -a $(grep install-python_ext ${S}/tools/perf/Makefile) = "0"]; then 115 if [ "${@perf_feature_enabled('perf-scripting', 1, 0, d)}" = "1" -a $(grep install-python_ext ${S}/tools/perf/Makefile) = "0" ]; then
116 oe_runmake DESTDIR=${D} install-python_ext 116 oe_runmake DESTDIR=${D} install-python_ext
117 fi 117 fi
118} 118}