From: Martin Jansa Date: Mon, 1 Feb 2010 18:51:27 +0000 (+0100) Subject: mplayer-common: fix FILES X-Git-Tag: Release-2010-05/1~612^2~17 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=700ab5ea01d7bc15d6704640a14006e5663dc3c0;p=openembedded.git mplayer-common: fix FILES * ${sysconfdir} starts with /, so now we had /usr//etc/mplayer in install call and FILES, but it doesn't work in FILES variable * /usr${sysconfdir} works but it's ugly, feel free to revert to original version with /usr/etc/mplayer Signed-off-by: Martin Jansa --- diff --git a/recipes/mplayer/mplayer-common.bb b/recipes/mplayer/mplayer-common.bb index 99bc54de5d..d1ea923d47 100644 --- a/recipes/mplayer/mplayer-common.bb +++ b/recipes/mplayer/mplayer-common.bb @@ -10,11 +10,11 @@ SRC_URI = "file://mplayer.conf" # Yes, really /usr/etc!!! do_install() { - install -d "${D}/usr/${sysconfdir}/mplayer" + install -d "${D}/usr${sysconfdir}/mplayer" - install -m 0644 ${WORKDIR}/mplayer.conf "${D}/usr/${sysconfdir}/mplayer" + install -m 0644 ${WORKDIR}/mplayer.conf "${D}/usr${sysconfdir}/mplayer" } -FILES_${PN} = "/usr/${sysconfdir}/mplayer" +FILES_${PN} = "/usr${sysconfdir}/mplayer" PACKAGE_ARCH = "all"