Skip to content

Commit

Permalink
omxplayer: Don't hardcode datadir
Browse files Browse the repository at this point in the history
Change-Id: Ibe66106fdf1da38d43278f5e2853c722709b91db
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
  • Loading branch information
agherzan committed Mar 5, 2014
1 parent a760ea5 commit edce18f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions recipes-multimedia/omxplayer/omxplayer_git.bb
Expand Up @@ -57,13 +57,13 @@ do_compile() {

do_install() {
oe_runmake STRIP='echo skipping strip' dist
mkdir -p ${D}/usr/share/fonts/truetype/freefont/
install ${S}/fonts/* ${D}/usr/share/fonts/truetype/freefont/
mkdir -p ${D}${datadir}/fonts/truetype/freefont/
install ${S}/fonts/* ${D}${datadir}/fonts/truetype/freefont/
}

FILES_${PN} = "${bindir}/omxplayer* \
${libdir}/omxplayer/lib*${SOLIBS} \
/usr/share/fonts"
${datadir}/fonts"

FILES_${PN}-dev += "${libdir}/omxplayer/*.so"

Expand Down

0 comments on commit edce18f

Please sign in to comment.