mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 20:53:03 +01:00
The patch tool will apply patches by default with "fuzz", which is where if the hunk context isn't present but what is there is close enough, it will force the patch in. Whilst this is useful when there's just whitespace changes, when applied to source it is possible for a patch applied with fuzz to produce broken code which still compiles (see #10450). This is obviously bad. We'd like to eventually have do_patch() rejecting any fuzz on these grounds. For that to be realistic the existing patches with fuzz need to be rebased and reviewed. (From OE-Core rev: 05b59a502a03b4077208b83a4823e2012146671a) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From 490fc3bbd65c2c252c1fdf3da0fac9898aa9eea6 Mon Sep 17 00:00:00 2001
|
|
From: Robert Yang <liezhi.yang@windriver.com>
|
|
Date: Fri, 15 Aug 2014 21:09:16 -0700
|
|
Subject: [PATCH] com32/Makefile: fix parallel issue
|
|
|
|
Fixed:
|
|
cp -r syslinux-6.01/com32/libupload/*.h image/usr/share/syslinux/com32/include/
|
|
[snip]
|
|
rm -rf image/usr/share/syslinux/com32/include
|
|
[snip]
|
|
cp: cannot create regular file `image/usr/share/syslinux/com32/include/serial.h': No such file or directory
|
|
|
|
The cp is happened in the "libupload" dir, while "rm -fr" is happend in
|
|
"lib" dir, let "libupload" depend "lib" will fix the problem.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
|
|
---
|
|
com32/Makefile | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
Index: syslinux-6.03/com32/Makefile
|
|
===================================================================
|
|
--- syslinux-6.03.orig/com32/Makefile
|
|
+++ syslinux-6.03/com32/Makefile
|
|
@@ -22,3 +22,4 @@ samples: libutil elflink/ldlinux
|
|
sysdump: lib libutil libupload gpllib
|
|
lua/src: cmenu modules
|
|
gpllib: lib
|
|
+libupload: lib
|