blob: c0714b51757ae8001f43f6dad04a93548c1532c3 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001From 490fc3bbd65c2c252c1fdf3da0fac9898aa9eea6 Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Fri, 15 Aug 2014 21:09:16 -0700
4Subject: [PATCH] com32/Makefile: fix parallel issue
5
6Fixed:
7cp -r syslinux-6.01/com32/libupload/*.h image/usr/share/syslinux/com32/include/
8[snip]
9rm -rf image/usr/share/syslinux/com32/include
10[snip]
11cp: cannot create regular file `image/usr/share/syslinux/com32/include/serial.h': No such file or directory
12
13The cp is happened in the "libupload" dir, while "rm -fr" is happend in
14"lib" dir, let "libupload" depend "lib" will fix the problem.
15
16Upstream-Status: Pending
17
18Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
19---
20 com32/Makefile | 1 +
21 1 file changed, 1 insertion(+)
22
23diff --git a/com32/Makefile b/com32/Makefile
24index 9a1721b..f172db2 100644
25--- a/com32/Makefile
26+++ b/com32/Makefile
27@@ -21,3 +21,4 @@ rosh: lib libutil
28 samples: libutil elflink/ldlinux
29 sysdump: libupload gpllib
30 gpllib: lib
31+libupload: lib
32--
331.7.9.5
34