From: Chris Larson Date: Sun, 21 Nov 2010 23:30:53 +0000 (-0700) Subject: mktemp: fix for bindir vs base_bindir X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44289f3b9f14db9fcc860c7625e3503deec34821;p=openembedded.git mktemp: fix for bindir vs base_bindir Signed-off-by: Chris Larson --- diff --git a/recipes/mktemp/mktemp_1.6.bb b/recipes/mktemp/mktemp_1.6.bb index d0312d5f8b..ca54075688 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"