From 700ab5ea01d7bc15d6704640a14006e5663dc3c0 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Mon, 1 Feb 2010 19:51:27 +0100 Subject: 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 --- recipes/mplayer/mplayer-common.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'recipes/mplayer') 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" -- cgit 1.2.3-korg