M7350v1_en_gpl

This commit is contained in:
T
2024-09-09 08:52:07 +00:00
commit f9cc65cfda
65988 changed files with 26357421 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
Upstream-Status: Inappropriate [configuration]
diff --git a/Makefile.in b/Makefile.in
index 37b3cc9..f1026f3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -95,7 +95,7 @@ install-dirs:
$(DESTDIR)$(mandir)/man1
install-binaries: $(PROG)
- $(INSTALL) -m 0555 -s $(PROG) $(DESTDIR)$(bindir)/$(PROG)
+ $(INSTALL) -m 0555 $(PROG) $(DESTDIR)$(bindir)/$(PROG)
install-man:
$(INSTALL) -m 0444 $(srcdir)/mktemp.$(mantype) \

View File

@@ -0,0 +1,24 @@
This fixes the parallel make install failure
Upstream-Status: Accepted
http://www.gratisoft.us/bugzilla/show_bug.cgi?id=528
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Index: mktemp-1.7/Makefile.in
===================================================================
--- mktemp-1.7.orig/Makefile.in
+++ mktemp-1.7/Makefile.in
@@ -94,10 +94,10 @@ install-dirs:
$(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) \
$(DESTDIR)$(mandir)/man1
-install-binaries: $(PROG)
+install-binaries: install-dirs $(PROG)
$(INSTALL) -m 0555 $(PROG) $(DESTDIR)$(bindir)/$(PROG)
-install-man:
+install-man: install-dirs
$(INSTALL) -m 0444 $(srcdir)/mktemp.$(mantype) \
$(DESTDIR)$(mandir)/man1/mktemp.1

View File

@@ -0,0 +1,30 @@
DESCRIPTION = "Allow safe temporary file creation from shell scripts."
HOMEPAGE = "http://www.mktemp.org/"
BUGTRACKER = "http://www.mktemp.org/bugs"
SECTION = "console/utils"
LICENSE = "ISC"
LIC_FILES_CHKSUM = "file://LICENSE;md5=430680f6322a1eb87199b5e01a82c0d4"
PR = "r1"
SRC_URI = "ftp://ftp.mktemp.org/pub/mktemp/${BPN}-${PV}.tar.gz \
file://disable-strip.patch \
file://fix-parallel-make.patch \
"
SRC_URI[md5sum] = "787bbed9fa2ee8e7645733c0e8e65172"
SRC_URI[sha256sum] = "8e94b9e1edf866b2609545da65b627996ac5d158fda071e492bddb2f4a482675"
inherit autotools update-alternatives
EXTRA_OECONF = "--with-libc"
do_install_append () {
mkdir ${D}${base_bindir}
mv ${D}${bindir}/mktemp ${D}${base_bindir}/mktemp.${PN}
}
ALTERNATIVE_NAME = "mktemp"
ALTERNATIVE_LINK = "${base_bindir}/mktemp"
ALTERNATIVE_PATH = "${base_bindir}/mktemp.${PN}"
ALTERNATIVE_PRIORITY = "100"