Skip to content
Snippets Groups Projects
Commit b9e8c372 authored by Jack Mitchell's avatar Jack Mitchell Committed by Arnaldo Carvalho de Melo
Browse files

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: default avatarJack Mitchell <jack.mitchell@dbbroadcast.co.uk>
Acked-by: default avatarNamhyung 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: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent e4dd45fe
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ export Q VERBOSE
EVENT_PARSE_VERSION = $(EP_VERSION).$(EP_PATCHLEVEL).$(EP_EXTRAVERSION)
INCLUDES = -I. -I/usr/local/include $(CONFIG_INCLUDES)
INCLUDES = -I. $(CONFIG_INCLUDES)
# Set compile option CFLAGS if not set elsewhere
CFLAGS ?= -g -Wall
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment