summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/mktemp
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/mktemp')
-rw-r--r--meta/recipes-extended/mktemp/mktemp_1.7.bb11
1 files changed, 5 insertions, 6 deletions
diff --git a/meta/recipes-extended/mktemp/mktemp_1.7.bb b/meta/recipes-extended/mktemp/mktemp_1.7.bb
index b3a3d51afa..170a183a6e 100644
--- a/meta/recipes-extended/mktemp/mktemp_1.7.bb
+++ b/meta/recipes-extended/mktemp/mktemp_1.7.bb
@@ -5,7 +5,7 @@ SECTION = "console/utils"
5LICENSE = "ISC" 5LICENSE = "ISC"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=430680f6322a1eb87199b5e01a82c0d4" 6LIC_FILES_CHKSUM = "file://LICENSE;md5=430680f6322a1eb87199b5e01a82c0d4"
7 7
8PR = "r2" 8PR = "r3"
9 9
10SRC_URI = "ftp://ftp.mktemp.org/pub/mktemp/${BPN}-${PV}.tar.gz \ 10SRC_URI = "ftp://ftp.mktemp.org/pub/mktemp/${BPN}-${PV}.tar.gz \
11 file://disable-strip.patch \ 11 file://disable-strip.patch \
@@ -20,12 +20,11 @@ inherit autotools update-alternatives
20EXTRA_OECONF = "--with-libc" 20EXTRA_OECONF = "--with-libc"
21 21
22do_install_append () { 22do_install_append () {
23 mkdir ${D}${base_bindir} 23 install -d ${D}${base_bindir}
24 mv ${D}${bindir}/mktemp ${D}${base_bindir}/mktemp.${BPN} 24 mv ${D}${bindir}/mktemp ${D}${base_bindir}/mktemp
25 rmdir ${D}${bindir} 25 rmdir ${D}${bindir}
26} 26}
27 27
28ALTERNATIVE_NAME = "mktemp" 28ALTERNATIVE_${PN} = "mktemp"
29ALTERNATIVE_LINK = "${base_bindir}/mktemp" 29ALTERNATIVE_LINK_NAME[mktemp] = "${base_bindir}/mktemp"
30ALTERNATIVE_PATH = "${base_bindir}/mktemp.${BPN}"
31ALTERNATIVE_PRIORITY = "100" 30ALTERNATIVE_PRIORITY = "100"