diff options
author | Darren Hart <dvhart@linux.intel.com> | 2015-01-23 09:46:43 -0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-02-12 19:31:51 +0100 |
commit | 8f63850c4d1f348a71958a508f7e50346b04ace1 (patch) | |
tree | d7a3883121a82d197df469c702cf1d6667560a09 | |
parent | 34c8c858833ada1f596e776ba89924e3cddf34af (diff) | |
download | meta-openembedded-8f63850c4d1f348a71958a508f7e50346b04ace1.tar.gz |
fb-tests: Prepend fb- to the binaries
The binaries conflict with perf and mesa-demos. Update do_install to
prefix the binaries, avoiding the namespace conflict.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Cc: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/fbtest/fb-test_git.bb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/meta-oe/recipes-support/fbtest/fb-test_git.bb b/meta-oe/recipes-support/fbtest/fb-test_git.bb index 65f98c1fe..13f9e377a 100644 --- a/meta-oe/recipes-support/fbtest/fb-test_git.bb +++ b/meta-oe/recipes-support/fbtest/fb-test_git.bb | |||
@@ -11,9 +11,10 @@ SRC_URI = "git://github.com/prpplague/fb-test-app.git" | |||
11 | S = "${WORKDIR}/git" | 11 | S = "${WORKDIR}/git" |
12 | 12 | ||
13 | do_install() { | 13 | do_install() { |
14 | install -d ${D}${bindir} | 14 | install -d ${D}${bindir} |
15 | for prog in perf rect fb-test offset ; do | 15 | install -m 0755 fb-test ${D}${bindir} |
16 | install -m 0755 $prog ${D}${bindir} | 16 | # avoid collisions with perf (perf) and mesa-demos (offset) |
17 | done | 17 | for prog in perf rect offset ; do |
18 | install -m 0755 $prog ${D}${bindir}/fb-$prog | ||
19 | done | ||
18 | } | 20 | } |
19 | |||