summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Heinold <henning@itconsulting-heinold.de>2014-06-24 23:34:45 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-03 13:47:22 +0100
commit19f3e362b379e493144791269c5da7f936448b76 (patch)
tree29f3d1de45c363c066d8a99ab0297161b657b0ab
parent4a18e162d841a6b52a022d4c76b0d60bbd77d5f8 (diff)
downloadpoky-19f3e362b379e493144791269c5da7f936448b76.tar.gz
perf: fix broken shell comparsion in do_install
The patch was sponsored by sysmocom (From OE-Core rev: 7e38d8ad6f7f4c289975acdac5c4d254ff3df7e6) Signed-off-by: Henning Heinold <henning@itconsulting-heinold.de> 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 903ffa6eaf..31c2c8eade 100644
--- a/meta/recipes-kernel/perf/perf.bb
+++ b/meta/recipes-kernel/perf/perf.bb
@@ -109,7 +109,7 @@ do_install() {
109 unset CFLAGS 109 unset CFLAGS
110 oe_runmake DESTDIR=${D} install 110 oe_runmake DESTDIR=${D} install
111 # we are checking for this make target to be compatible with older perf versions 111 # we are checking for this make target to be compatible with older perf versions
112 if [ "${@perf_feature_enabled('perf-scripting', 1, 0, d)}" = "1" -a $(grep install-python_ext ${S}/tools/perf/Makefile) = "0"]; then 112 if [ "${@perf_feature_enabled('perf-scripting', 1, 0, d)}" = "1" -a $(grep install-python_ext ${S}/tools/perf/Makefile) = "0" ]; then
113 oe_runmake DESTDIR=${D} install-python_ext 113 oe_runmake DESTDIR=${D} install-python_ext
114 fi 114 fi
115} 115}