diff options
-rw-r--r-- | meta/recipes-extended/mktemp/files/fix-parallel-make.patch | 23 | ||||
-rw-r--r-- | meta/recipes-extended/mktemp/mktemp_1.7.bb | 3 |
2 files changed, 25 insertions, 1 deletions
diff --git a/meta/recipes-extended/mktemp/files/fix-parallel-make.patch b/meta/recipes-extended/mktemp/files/fix-parallel-make.patch new file mode 100644 index 0000000000..8c693cc151 --- /dev/null +++ b/meta/recipes-extended/mktemp/files/fix-parallel-make.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | This fixes the parallel make install failure | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | Signed-off-by: Saul Wold <sgw@linux.intel.com> | ||
6 | |||
7 | Index: mktemp-1.7/Makefile.in | ||
8 | =================================================================== | ||
9 | --- mktemp-1.7.orig/Makefile.in | ||
10 | +++ mktemp-1.7/Makefile.in | ||
11 | @@ -94,10 +94,10 @@ install-dirs: | ||
12 | $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) \ | ||
13 | $(DESTDIR)$(mandir)/man1 | ||
14 | |||
15 | -install-binaries: $(PROG) | ||
16 | +install-binaries: install-dirs $(PROG) | ||
17 | $(INSTALL) -m 0555 $(PROG) $(DESTDIR)$(bindir)/$(PROG) | ||
18 | |||
19 | -install-man: | ||
20 | +install-man: install-dirs | ||
21 | $(INSTALL) -m 0444 $(srcdir)/mktemp.$(mantype) \ | ||
22 | $(DESTDIR)$(mandir)/man1/mktemp.1 | ||
23 | |||
diff --git a/meta/recipes-extended/mktemp/mktemp_1.7.bb b/meta/recipes-extended/mktemp/mktemp_1.7.bb index d0479ced2a..65f542ef00 100644 --- a/meta/recipes-extended/mktemp/mktemp_1.7.bb +++ b/meta/recipes-extended/mktemp/mktemp_1.7.bb | |||
@@ -5,10 +5,11 @@ SECTION = "console/utils" | |||
5 | LICENSE = "ISC" | 5 | LICENSE = "ISC" |
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=430680f6322a1eb87199b5e01a82c0d4" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=430680f6322a1eb87199b5e01a82c0d4" |
7 | 7 | ||
8 | PR = "r0" | 8 | PR = "r1" |
9 | 9 | ||
10 | SRC_URI = "ftp://ftp.mktemp.org/pub/mktemp/${BPN}-${PV}.tar.gz \ | 10 | SRC_URI = "ftp://ftp.mktemp.org/pub/mktemp/${BPN}-${PV}.tar.gz \ |
11 | file://disable-strip.patch \ | 11 | file://disable-strip.patch \ |
12 | file://fix-parallel-make.patch \ | ||
12 | " | 13 | " |
13 | 14 | ||
14 | SRC_URI[md5sum] = "787bbed9fa2ee8e7645733c0e8e65172" | 15 | SRC_URI[md5sum] = "787bbed9fa2ee8e7645733c0e8e65172" |