From 5a5aff6a77dfc0bae66077589a93ba6d1755bcdc Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 21 Mar 2013 14:20:24 +0000 Subject: xinted: Fix case where ${B} != ${S} do_install needs to reference files in ${B} and we need to run do_configuze in ${S}. Signed-off-by: Richard Purdie --- meta/recipes-extended/xinetd/xinetd_2.3.15.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta/recipes-extended/xinetd') diff --git a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb index 87ea2b1b05..797657083e 100644 --- a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb +++ b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb @@ -34,7 +34,7 @@ PACKAGECONFIG[tcp-wrappers] = "--with-libwrap,,tcp-wrappers" do_configure() { # Looks like configure.in is broken, so we are skipping # rebuilding configure and are just using the shipped one - gnu-configize --force + ( cd ${S}; gnu-configize --force ) oe_runconf } @@ -49,8 +49,8 @@ do_install() { install -m 644 "${WORKDIR}/xinetd.conf" "${D}${sysconfdir}" install -m 755 "${WORKDIR}/xinetd.init" "${D}${sysconfdir}/init.d/xinetd" install -m 644 "${WORKDIR}/xinetd.default" "${D}${sysconfdir}/default/xinetd" - install -m 755 "${S}/xinetd/xinetd" "${D}${sbindir}" - install -m 755 "${S}/xinetd/itox" "${D}${sbindir}" + install -m 755 "${B}/xinetd/xinetd" "${D}${sbindir}" + install -m 755 "${B}/xinetd/itox" "${D}${sbindir}" } CONFFILES_${PN} = "${sysconfdir}/xinetd.conf" -- cgit 1.2.3-korg