- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
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
|
|
@@ -316,7 +316,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
|