mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
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>
This commit is contained in:
committed by
Martin Jansa
parent
34c8c85883
commit
8f63850c4d
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user