Fix: trigger build error if CONFIG_TRACEPOINTS is not set
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 11 May 2016 02:06:18 +0000 (22:06 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 11 May 2016 02:06:54 +0000 (22:06 -0400)
Fixes: #1015
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Makefile

index b8df89f1cadb163bd23d9b7c73369a9dc5b262fc..462cf208778cb2df28e1c028e6cca16690e21b0b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,10 @@
 #
 
 ifneq ($(KERNELRELEASE),)
-ifneq ($(CONFIG_TRACEPOINTS),)
+
+ifeq ($(CONFIG_TRACEPOINTS),)
+$(error The option CONFIG_TRACEPOINTS needs to be enabled in your kernel configuration)
+endif # CONFIG_TRACEPOINTS
 
 KERNELDIR = ${LTTNG_KERNELDIR}
 MAKEFILEDIR = $(shell dirname $(lastword $(MAKEFILE_LIST)))
@@ -67,8 +70,6 @@ lttng-tracer-objs += $(shell \
 obj-m += probes/
 obj-m += lib/
 
-endif # CONFIG_TRACEPOINTS
-
 else # KERNELRELEASE
        KERNELDIR ?= /lib/modules/$(shell uname -r)/build
        PWD := $(shell pwd)
This page took 0.026004 seconds and 4 git commands to generate.