mirror of
https://git.yoctoproject.org/poky
synced 2026-03-28 10:02:21 +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: c94152fee766297b355fec7f6d3d4d8ba7ae5f86) 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>
27 lines
1020 B
Diff
27 lines
1020 B
Diff
Avoid parallel-tests as it remove
|
|
buildtest-TESTS and runtest-TESTS targets required by ptest.
|
|
In automake 1.13.4 parallel-tests is assumed by defauls.
|
|
In order to have buildtest-TESTS and runtest-TESTS targets
|
|
serial-tests is now required
|
|
|
|
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
|
|
Upstream-Status: Inappropriate (disable feature incompatible with ptest)
|
|
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: git/configure.ac
|
|
===================================================================
|
|
--- git.orig/configure.ac
|
|
+++ git/configure.ac
|
|
@@ -14,7 +14,7 @@ AC_USE_SYSTEM_EXTENSIONS
|
|
AC_SYS_LARGEFILE
|
|
AC_PREFIX_DEFAULT([/usr])
|
|
AM_MAINTAINER_MODE([enable])
|
|
-AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests])
|
|
+AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests serial-tests])
|
|
AM_SILENT_RULES([yes])
|
|
LT_INIT([disable-static pic-only])
|
|
DOLT
|