From: Javier Martinez Canillas Date: Sun, 5 Aug 2012 19:48:32 +0000 (+0200) Subject: sudo: use ${bindir} and ${sysconfdir} instead of /usr/bin and /etc X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7191f4b98c0bb9a9d42b9b3e6d298293e96f4152;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git sudo: use ${bindir} and ${sysconfdir} instead of /usr/bin and /etc It is considered good practice to use the build system provided variables instead of directly specify hardcoded paths. (From OE-Core rev: a9c73d9d3dd5f7fbee82d7ed3cb88a80aa3cbfbd) Signed-off-by: Javier Martinez Canillas Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/sudo/sudo_1.8.5p2.bb b/meta/recipes-extended/sudo/sudo_1.8.5p2.bb index dfba7e08561..4e4a4436ff4 100644 --- a/meta/recipes-extended/sudo/sudo_1.8.5p2.bb +++ b/meta/recipes-extended/sudo/sudo_1.8.5p2.bb @@ -1,6 +1,6 @@ require sudo.inc -PR = "r0" +PR = "r1" SRC_URI = "http://ftp.sudo.ws/sudo/dist/sudo-${PV}.tar.gz \ file://libtool.patch \ @@ -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 }