From 8f63850c4d1f348a71958a508f7e50346b04ace1 Mon Sep 17 00:00:00 2001 From: Darren Hart Date: Fri, 23 Jan 2015 09:46:43 -0800 Subject: 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 Cc: Koen Kooi Signed-off-by: Martin Jansa --- meta-oe/recipes-support/fbtest/fb-test_git.bb | 11 ++++++----- 1 file 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 65f98c1fe4..13f9e377a8 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" S = "${WORKDIR}/git" do_install() { - install -d ${D}${bindir} - for prog in perf rect fb-test offset ; do - install -m 0755 $prog ${D}${bindir} - done + install -d ${D}${bindir} + install -m 0755 fb-test ${D}${bindir} + # avoid collisions with perf (perf) and mesa-demos (offset) + for prog in perf rect offset ; do + install -m 0755 $prog ${D}${bindir}/fb-$prog + done } - -- cgit 1.2.3-korg