mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
e109e6bd7f
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: 684a2533a2b25b900e12f7da912a2c729d60b69d) 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
940 B
Diff
27 lines
940 B
Diff
Author: Andrei Gherzan <andrei@gherzan.ro>
|
|
Date: Thu Feb 9 00:03:38 2012 +0200
|
|
|
|
Avoid QA warnings by removing hardcoded rpath from binaries.
|
|
|
|
[...]
|
|
WARNING: QA Issue: package nspr contains bad RPATH {builddir}/tmp/work/armv5te-poky-linux-gnueabi/nspr-4.8.9-r1/nspr-4.8.9/mozilla/nsprpub/pr/tests/../../dist/lib
|
|
in file {builddir}/tmp/work/armv5te-poky-linux-gnueabi/nspr-4.8.9-r1/packages-split/nspr/usr/lib/nspr/tests/multiwait
|
|
[...]
|
|
|
|
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
|
|
Upstream-Status: Pending
|
|
|
|
Index: nspr/pr/tests/Makefile.in
|
|
===================================================================
|
|
--- nspr.orig/pr/tests/Makefile.in
|
|
+++ nspr/pr/tests/Makefile.in
|
|
@@ -315,7 +315,7 @@ ifeq ($(OS_ARCH), SunOS)
|
|
endif # SunOS
|
|
|
|
ifeq (,$(filter-out Linux GNU GNU_%,$(OS_ARCH)))
|
|
- LDOPTS += -Xlinker -rpath $(ABSOLUTE_LIB_DIR)
|
|
+ LDOPTS += -Xlinker
|
|
ifeq ($(USE_PTHREADS),1)
|
|
EXTRA_LIBS = -lpthread
|
|
endif
|