From 05e00a93f487c4616b90f6cc66d945463caa5378 Mon Sep 17 00:00:00 2001 From: Javier Martinez Canillas Date: Sun, 5 Aug 2012 21:48:55 +0200 Subject: chkconfig: use ${sysconfdir} instead of /etc for packaging It is considered good practice to use the build system provided variables instead of directly specify hardcoded paths. (From OE-Core rev: 7b77d4372ace6aa2400e3328875b39b4f67476d0) Signed-off-by: Javier Martinez Canillas Signed-off-by: Richard Purdie --- meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb b/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb index 17987a660e..9e0e1a05f0 100644 --- a/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb +++ b/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb @@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5574c6965ae5f583e55880e397fbb018" DEPENDS = "libnewt popt" -PR = "r1" +PR = "r2" SRC_URI = "http://fedorahosted.org/releases/c/h/chkconfig/${BPN}-${PV}.tar.bz2" @@ -24,6 +24,6 @@ inherit autotools gettext EXTRA_OEMAKE += 'MANDIR="${mandir}" BINDIR="${base_sbindir}" SBINDIR="${sbindir}"' do_install_append() { - mkdir -p ${D}/etc/chkconfig.d + mkdir -p ${D}${sysconfdir}/chkconfig.d rm -f ${D}${sbindir}/update-alternatives } -- cgit v1.2.3-54-g00ecf