Files
poky/meta/recipes-extended/mktemp/files/fix-parallel-make.patch
Scott Garman 553302b3c0 mktemp: mark patch as upstreamed
Patch sumitted and accepted upstream, updating Upstream-Status.

(From OE-Core rev: f647d2cc1ee6cf84f4b9153bbe8a0c030668b1d0)

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-19 09:29:16 +00:00

25 lines
715 B
Diff

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