--- Begin Message ---
Subject: |
[PATCH] gnu: lttng-ust: Fix dependencies. |
Date: |
Thu, 7 Apr 2022 20:18:44 -0400 |
* gnu/packages/instrumentation.scm (lttng-ust): Fix dependencies.
[inputs]: Remove liburcu.
[propagated-inputs]: Add liburcu.
Headers of liburcu are used by headers of lttng.
---
gnu/packages/instrumentation.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/instrumentation.scm b/gnu/packages/instrumentation.scm
index ab986bfcc7..45a6872268 100644
--- a/gnu/packages/instrumentation.scm
+++ b/gnu/packages/instrumentation.scm
@@ -214,7 +214,9 @@ (define-public lttng-ust
"1p7d94r275yvby6zqfxaswdl1q46zxbc8x5rkhnjxrp1d41byrsn"))))
(build-system gnu-build-system)
(inputs
- (list liburcu numactl))
+ (list numactl))
+ (propagated-inputs
+ (list liburcu))
(native-inputs
(list python-3 pkg-config))
(home-page "https://lttng.org/")
--
2.34.0
--- End Message ---
--- Begin Message ---
Subject: |
Re: bug#54780: [PATCH] gnu: lttng-ust: Fix dependencies. |
Date: |
Tue, 14 Jun 2022 23:26:54 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) |
Hi Olivier,
Olivier Dion <olivier.dion@polymtl.ca> skribis:
> Could we have one of the patches merge? Either the first version or the
> last. lttng-ust is currently broken and setting aside the patch of
> absolute inclusion of header files, it would be nice to have it work
> until then.
I finally applied the first version.
Thanks and apologies for the delay!
Ludo’.
--- End Message ---