[oe-commits] Chris Larson : mktemp: fix for bindir vs base_bindir

git version control git at git.openembedded.org
Sun Nov 21 23:41:17 UTC 2010


Module: openembedded.git
Branch: master
Commit: 44289f3b9f14db9fcc860c7625e3503deec34821
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=44289f3b9f14db9fcc860c7625e3503deec34821

Author: Chris Larson <chris_larson at mentor.com>
Date:   Sun Nov 21 16:30:53 2010 -0700

mktemp: fix for bindir vs base_bindir

Signed-off-by: Chris Larson <chris_larson at mentor.com>

---

 recipes/mktemp/mktemp_1.6.bb |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/recipes/mktemp/mktemp_1.6.bb b/recipes/mktemp/mktemp_1.6.bb
index d0312d5..ca54075 100644
--- a/recipes/mktemp/mktemp_1.6.bb
+++ b/recipes/mktemp/mktemp_1.6.bb
@@ -2,20 +2,22 @@ DESCRIPTION = "Allow safe temporary file creation from shell scripts."
 HOMEPAGE = "http://www.mktemp.org/"
 SECTION = "console/utils"
 LICENSE = "GPLv2 BSD"
+PR = "r2"
 
 inherit autotools update-alternatives
 
 EXTRA_OECONF = "--with-libc"
 
 SRC_URI = "\
-  ftp://ftp.mktemp.org/pub/mktemp/${P}.tar.gz \
-  file://add_destdir.patch \
-  file://disable-strip.patch \
+    ftp://ftp.mktemp.org/pub/mktemp/${BP}.tar.gz \
+    file://add_destdir.patch \
+    file://disable-strip.patch \
 "
 
-do_install_append () {
-	mkdir ${D}${base_bindir}
-	mv ${D}${bindir}/mktemp ${D}${base_bindir}/mktemp.${PN}
+bindir = "${base_bindir}"
+
+do_install_append_pn-mktemp () {
+    mv ${D}${base_bindir}/mktemp ${D}${base_bindir}/mktemp.${PN}
 }
 
 ALTERNATIVE_NAME = "mktemp"





More information about the Openembedded-commits mailing list