[oe-commits] Javier Martinez Canillas : sudo: use ${bindir} and ${sysconfdir} instead of /usr/bin and /etc

git at git.openembedded.org git at git.openembedded.org
Mon Aug 6 14:22:42 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: a9c73d9d3dd5f7fbee82d7ed3cb88a80aa3cbfbd
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=a9c73d9d3dd5f7fbee82d7ed3cb88a80aa3cbfbd

Author: Javier Martinez Canillas <javier at dowhile0.org>
Date:   Sun Aug  5 21:48:32 2012 +0200

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.

Signed-off-by: Javier Martinez Canillas <javier at dowhile0.org>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-extended/sudo/sudo_1.8.5p2.bb |    6 +++---
 1 files changed, 3 insertions(+), 3 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..4e4a443 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
 }





More information about the Openembedded-commits mailing list