summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2012-12-28 22:19:25 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-07 11:09:41 +0000
commita045d23345ee8b48217a86284379dff076f11e90 (patch)
tree8472e2e7d3917641f32b0cf3d87b762c7a73b4c8 /meta/recipes-extended
parent925ffcbf1ef17e40f0734948df938563d886531b (diff)
downloadpoky-a045d23345ee8b48217a86284379dff076f11e90.tar.gz
chkconfig: don't inherit autotools
This buildsystem is not autoconf/automake, but make. While we're at it, also make the install not hardcode the path to /usr/share/locale. (From OE-Core rev: 0e6f76d9d5929f8c23916827dccc8389419f0163) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb24
1 files changed, 15 insertions, 9 deletions
diff --git a/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb b/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb
index fd7bd1a111..7915594c6e 100644
--- a/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb
+++ b/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb
@@ -12,23 +12,29 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5574c6965ae5f583e55880e397fbb018"
12 12
13DEPENDS = "libnewt popt" 13DEPENDS = "libnewt popt"
14 14
15PR = "r4" 15PR = "r5"
16 16
17SRC_URI = "http://fedorahosted.org/releases/c/h/chkconfig/${BPN}-${PV}.tar.bz2" 17SRC_URI = "http://fedorahosted.org/releases/c/h/chkconfig/${BPN}-${PV}.tar.bz2"
18 18
19SRC_URI[md5sum] = "c2039ca67f2749fe0c06ef7c6f8ee246" 19SRC_URI[md5sum] = "c2039ca67f2749fe0c06ef7c6f8ee246"
20SRC_URI[sha256sum] = "18b497d25b2cada955c72810e45fcad8280d105f17cf45e2970f18271211de68" 20SRC_URI[sha256sum] = "18b497d25b2cada955c72810e45fcad8280d105f17cf45e2970f18271211de68"
21 21
22inherit autotools gettext 22inherit gettext
23 23
24# Makefile uses RPM_OPT_fLAGS to construct CFLAGS 24# Makefile uses RPM_OPT_FLAGS to construct CFLAGS
25# 25#
26EXTRA_OEMAKE += 'RPM_OPT_FLAGS="${CFLAGS}" MANDIR="${mandir}" \ 26EXTRA_OEMAKE = "\
27 BINDIR="${base_sbindir}" SBINDIR="${sbindir}"' 27 'RPM_OPT_FLAGS=${CFLAGS}' \
28 28 'LDFLAGS=${LDFLAGS}' \
29do_install_append() { 29 'BINDIR=${base_sbindir}' \
30 mkdir -p ${D}${sysconfdir}/chkconfig.d 30 'SBINDIR=${sbindir}' \
31 rm -f ${D}${sbindir}/update-alternatives 31 'MANDIR=${mandir}' \
32"
33
34do_install() {
35 oe_runmake 'DESTDIR=${D}' 'INSTALLNLSDIR=${D}${datadir}/locale' install
36 mkdir -p ${D}${sysconfdir}/chkconfig.d
37 rm -f ${D}${sbindir}/update-alternatives
32} 38}
33 39
34do_install_append_linuxstdbase() { 40do_install_append_linuxstdbase() {