From cf1f236d3f1728714a2b4dbd2e8ace42294c6f9b Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Mon, 21 Nov 2022 14:45:24 -0500 Subject: [PATCH] Fix: don't build 64-bit counter client on 32-bit arch A typo in the Makefile resulted in the 64-bit counter client being built regardless of the bitness of the architecture. Change-Id: Icde0f15485ace2f3a7935c1e333dc0abd378b610 Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- src/Kbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kbuild b/src/Kbuild index 5cc8617d..a341fd9b 100644 --- a/src/Kbuild +++ b/src/Kbuild @@ -35,7 +35,7 @@ obj-$(CONFIG_LTTNG) += lttng-ring-buffer-metadata-mmap-client.o obj-$(CONFIG_LTTNG) += lttng-ring-buffer-event-notifier-client.o obj-$(CONFIG_LTTNG) += lttng-counter-client-percpu-32-modular.o -ifneq ($CONFIG_64BIT),) +ifneq ($(CONFIG_64BIT),) obj-$(CONFIG_LTTNG) += lttng-counter-client-percpu-64-modular.o endif # CONFIG_64BIT -- 2.34.1