diff options
Diffstat (limited to 'meta-oe/recipes-support/fbtest')
-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 | |||