From patchwork Sun Aug 5 15:53:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [04/30] sudo: use ${bindir} and ${sysconfdir} instead of /usr/bin and /etc Date: Sun, 05 Aug 2012 15:53:51 -0000 From: Javier Martinez Canillas X-Patchwork-Id: 33847 Message-Id: <1344182057-15981-5-git-send-email-javier@dowhile0.org> To: Richard Purdie Cc: openembedded-core@lists.openembedded.org It is considered good practice to use the build system provided variables instead of directly specify hardcoded paths. Signed-off-by: Javier Martinez Canillas --- meta/recipes-extended/sudo/sudo_1.8.5p2.bb | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-extended/sudo/sudo_1.8.5p2.bb b/meta/recipes-extended/sudo/sudo_1.8.5p2.bb index dfba7e0..0b940d2 100644 --- a/meta/recipes-extended/sudo/sudo_1.8.5p2.bb +++ b/meta/recipes-extended/sudo/sudo_1.8.5p2.bb @@ -24,6 +24,6 @@ do_install_append () { fi done - chmod 4111 ${D}/usr/bin/sudo - chmod 0440 ${D}/etc/sudoers + chmod 4111 ${D}${bindir}/sudo + chmod 0440 ${D}${sysconfdir}/sudoers }