From ac10c55d6015f16a54f7dbe0c3423e58100b82b6 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Fri, 17 Apr 2015 12:07:57 -0400 Subject: [PATCH] Fix: version condition in makefile Signed-off-by: Mathieu Desnoyers --- probes/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/probes/Makefile b/probes/Makefile index 081136a2..ee912240 100644 --- a/probes/Makefile +++ b/probes/Makefile @@ -184,7 +184,7 @@ obj-m += $(shell \ ifneq ($(CONFIG_REGMAP),) obj-m += $(shell \ if [ $(VERSION) -ge 4 \ - \( -o $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 2 \) ] ; then \ + -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 2 \) ] ; then \ echo "lttng-probe-regmap.o" ; fi;) endif -- 2.34.1