diff options
author | Koen Kooi <koen.kooi@linaro.org> | 2014-06-17 11:01:27 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-17 10:23:53 +0100 |
commit | a37e09e5f99c98a4b5953a0475955217ad817936 (patch) | |
tree | e2f02cc380d3ec021fc361454d1f4e4320e53fa3 /meta | |
parent | 14058e84dc88e7cb48a8521e438c2b11b84e29bb (diff) | |
download | poky-a37e09e5f99c98a4b5953a0475955217ad817936.tar.gz |
hwlatdetect 0.85: fix variable ordering
The OE styleguide says to group R* variables below do_install.
(From OE-Core rev: 8f6e7a711b5b5ed23b270a385f9f491005ec32cf)
Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb b/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb index a5d2eac5cf..8319eb987a 100644 --- a/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb +++ b/meta/recipes-rt/rt-tests/hwlatdetect_0.85.bb | |||
@@ -4,8 +4,6 @@ HOMEPAGE = "http://git.kernel.org/?p=linux/kernel/git/clrkwllms/rt-tests.git" | |||
4 | SECTION = "tests" | 4 | SECTION = "tests" |
5 | LICENSE = "GPLv2" | 5 | LICENSE = "GPLv2" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
7 | RDEPENDS_${PN} = "python python-subprocess python-textutils" | ||
8 | RRECOMMENDS_${PN} = "kernel-module-hwlat-detector" | ||
9 | 7 | ||
10 | require rt-tests.inc | 8 | require rt-tests.inc |
11 | 9 | ||
@@ -21,3 +19,5 @@ do_install() { | |||
21 | } | 19 | } |
22 | 20 | ||
23 | FILES_${PN} += "${libdir}/python${PYTHON_BASEVERSION}/dist-packages/hwlatdetect.py" | 21 | FILES_${PN} += "${libdir}/python${PYTHON_BASEVERSION}/dist-packages/hwlatdetect.py" |
22 | RDEPENDS_${PN} = "python python-subprocess python-textutils" | ||
23 | RRECOMMENDS_${PN} = "kernel-module-hwlat-detector" | ||