Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

libtraceevent: Remove hard coded include to /usr/local/include in Makefile

having /usr/local/include hardcoded into the makefile is not necessary
as this is automatically included by GCC. It also infects cross-compile
builds with the host systems includes.

Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1362741712-21308-1-git-send-email-ml@communistcode.co.uk
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Jack Mitchell and committed by
Arnaldo Carvalho de Melo
b9e8c372 e4dd45fe

+1 -1
+1 -1
tools/lib/traceevent/Makefile
··· 122 122 123 123 EVENT_PARSE_VERSION = $(EP_VERSION).$(EP_PATCHLEVEL).$(EP_EXTRAVERSION) 124 124 125 - INCLUDES = -I. -I/usr/local/include $(CONFIG_INCLUDES) 125 + INCLUDES = -I. $(CONFIG_INCLUDES) 126 126 127 127 # Set compile option CFLAGS if not set elsewhere 128 128 CFLAGS ?= -g -Wall