mirror of
https://git.yoctoproject.org/poky
synced 2026-06-22 07:53:48 +02:00
Changelog for lttng-ust: 2.13.8 -> 2.13.10
============================================================
2026-02-13 lttng-ust 2.13.10
* Fix: ustctl: sigbus handling: statement with no effect
2025-04-14 (National Gardening Day) lttng-ust 2.13.9
* Fix: Use UATOMIC_HAS_ATOMIC_{BYTE,SHORT} for counter atomics
* Fix: lttng-ust-tp regex warnings
* lttng-ust-java: Load lttng-ust-context-jni before other JNI libraries
* doc/examples: set minimal CMake version to 3.5.0
* Fix: Update get_mempolicy check to handle EPERM
* Fix: Correct numa_available return code checks
* Fix: test_benchmark: do not match CPU(s) scaling MHz:
* Tests: Fix abi conflict test when building with clang
* Fix: Build examples when rpath is stripped from in-build-tree libs
* ust-fd: Add close_range declaration
* docs: Correct GitHub URLs in lttng-ust.3
* fix: handle EINTR correctly in get_cpu_mask_from_sysfs
(From OE-Core rev: 90f529115ed175652d2ab8c538d1c213550056f8)
Signed-off-by: Daniel Turull <daniel.turull@ericsson.com>
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Paul Barker <paul@pbarker.dev>
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 74bb718d64a120af79bf1068d1c6ad9e568fc58f Mon Sep 17 00:00:00 2001
|
|
From: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
Date: Tue, 20 Feb 2024 12:19:06 +0000
|
|
Subject: [PATCH] python-lttngust/Makefile.am: Add --install-lib to setup.py
|
|
|
|
Otherwise it may install to /usr/lib, but should be /usr/lib64 when cross
|
|
building.
|
|
|
|
Upstream-Status: Submitted [https://github.com/lttng/lttng-ust/pull/59]
|
|
|
|
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
|
|
---
|
|
src/python-lttngust/Makefile.am | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/python-lttngust/Makefile.am b/src/python-lttngust/Makefile.am
|
|
index d53e21d..283901e 100644
|
|
--- a/src/python-lttngust/Makefile.am
|
|
+++ b/src/python-lttngust/Makefile.am
|
|
@@ -45,7 +45,7 @@ install-exec-local: build-python-bindings.stamp
|
|
if [ "$(DESTDIR)" != "" ]; then \
|
|
opts="$$opts --root=$(DESTDIR)"; \
|
|
fi; \
|
|
- $(PYTHON) $(builddir)/setup.py install $(PY_INSTALL_OPTS) $$opts;
|
|
+ $(PYTHON) $(builddir)/setup.py install $(PY_INSTALL_OPTS) $$opts --install-lib=$(pythondir);
|
|
|
|
clean-local:
|
|
rm -rf $(builddir)/build
|