Fix: version condition in makefile
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 17 Apr 2015 16:07:57 +0000 (12:07 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 17 Apr 2015 16:08:21 +0000 (12:08 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
probes/Makefile

index 081136a2a3dd91686d1f446afa3a848ce5f14640..ee912240cf71bec8670f3fd88bbe905c3555a9f1 100644 (file)
@@ -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
 
This page took 0.026043 seconds and 4 git commands to generate.