Fix: don't build 64-bit counter client on 32-bit arch
authorMichael Jeanson <mjeanson@efficios.com>
Mon, 21 Nov 2022 19:45:24 +0000 (14:45 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 23 Nov 2022 20:07:51 +0000 (15:07 -0500)
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 <mjeanson@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
src/Kbuild

index 5cc8617df2991ca19b0d9619af009eb759d7968e..a341fd9bd85549eb84d0396ab324e7b202342c94 100644 (file)
@@ -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
 
This page took 0.024886 seconds and 4 git commands to generate.