From: Michael Jeanson Date: Mon, 21 Nov 2022 19:45:24 +0000 (-0500) Subject: Fix: don't build 64-bit counter client on 32-bit arch X-Git-Url: http://git.liburcu.org/?p=lttng-modules.git;a=commitdiff_plain;h=cf1f236d3f1728714a2b4dbd2e8ace42294c6f9b 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 --- 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