diff options
author | Henning Heinold <henning@itconsulting-heinold.de> | 2014-06-09 23:21:28 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-13 12:31:38 +0100 |
commit | 949953d50c95023bf47f9705d413fd93cbee0753 (patch) | |
tree | 488197f5a7a80bf34866a55fc928da2484c4599f /meta/recipes-kernel | |
parent | 82fc96d30913321571a4436d19d2c0401243f480 (diff) | |
download | poky-949953d50c95023bf47f9705d413fd93cbee0753.tar.gz |
perf: fix broken shell comparsion in do_install
The patch was sponsored by sysmocom
(From OE-Core rev: 17bf25adad715754de589d2ae54f97c07f5dafde)
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>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/perf/perf.bb | 2 |
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 | } |