mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
mktemp: Add patch to fix parallel make install
(From OE-Core rev: 28c7541582936c84b4c6f9de9a345d1463236167) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
576c8d181b
commit
1c892e84bb
@@ -0,0 +1,23 @@
|
||||
This fixes the parallel make install failure
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
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
|
||||
|
||||
@@ -5,10 +5,11 @@ SECTION = "console/utils"
|
||||
LICENSE = "ISC"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=430680f6322a1eb87199b5e01a82c0d4"
|
||||
|
||||
PR = "r0"
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user