blob: 08edaff157c61cede7e9183b3d4f9b0f330f2381 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001From df06b8170745eac347acb95f9f374f257621254f Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Thu, 29 Jan 2015 18:11:00 -0800
4Subject: [PATCH] Makefile.in: fix for parallel build
5
6Fixed:
7* do_compile
8 pth_uctx.c:31:19: fatal error: pth_p.h: No such file or directory
9 #include "pth_p.h"
10 ^
11compilation terminated.
12make: *** [pth_uctx.lo] Error 1
13
14* do_install:
15 cp: cannot create regular file `image/usr/lib/pkgconfig/#INST@15507#': No such file or directory
16
17Upstream-Status: Pending
18Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
19---
20 Makefile.in | 5 +++--
21 1 file changed, 3 insertions(+), 2 deletions(-)
22
23diff --git a/Makefile.in b/Makefile.in
24index de0390d..381a0ee 100644
25--- a/Makefile.in
26+++ b/Makefile.in
27@@ -219,7 +219,8 @@ test_pthread: test_pthread.o test_common.o libpthread.la
28
29 # install the package
30 install: all-for-install
31- @$(MAKE) $(MKFLAGS) install-dirs install-pth @INSTALL_PTHREAD@ install-pkgconfigDATA
32+ @$(MAKE) $(MKFLAGS) install-dirs
33+ @$(MAKE) $(MKFLAGS) install-pth @INSTALL_PTHREAD@ install-pkgconfigDATA
34 @touch .done-install >/dev/null 2>&1 || $(TRUE)
35 @$(MAKE) $(MKFLAGS) what-next
36 install-dirs:
37@@ -432,7 +433,7 @@ TAGS:
38 ## (AUTOMATICALLY UPDATED - DO NOT EDIT)
39 ##
40
41-$(LOBJS): Makefile
42+$(LOBJS): Makefile pth_p.h
43
44 # DO NOT REMOVE
45 pth_attr.lo: pth_attr.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h
46--
471.7.9.5
48