From: Richard Purdie Date: Mon, 13 May 2024 15:02:26 +0000 (+0100) Subject: at: Tweak UNPACKDIR reference X-Git-Tag: uninative-4.5~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57a4eb564446721fde05d7d619e2dc9bf5b79c5b;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git at: Tweak UNPACKDIR reference ${UNPACKDIR}/${BP} is ${S} so use the correct variable. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/at/at_3.2.5.bb b/meta/recipes-extended/at/at_3.2.5.bb index 0162548d337..112d1c4adcb 100644 --- a/meta/recipes-extended/at/at_3.2.5.bb +++ b/meta/recipes-extended/at/at_3.2.5.bb @@ -70,7 +70,7 @@ do_install () { sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/atd.service if [ "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" ]; then - install -D -m 0644 ${UNPACKDIR}/${BP}/pam.conf ${D}${sysconfdir}/pam.d/atd + install -D -m 0644 ${S}/pam.conf ${D}${sysconfdir}/pam.d/atd fi rm -f ${D}${datadir}/at/batch-job }