From: David Herrmann Date: Mon, 16 Mar 2015 09:17:10 +0000 (+0100) Subject: samples/kdbus: drop wrong include X-Git-Tag: submit/tizen/20150629.113101~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1899859026da1c30fbcf89fe1e6dee8062ef1bae;p=platform%2Fkernel%2Flinux-exynos.git samples/kdbus: drop wrong include There is no reason to use ./include/uapi/ directly from samples. If your system headers are not up-to-date, you _need_ to run "make headers-install" (which will install them to ./usr/ in your kernel tree) before building the examples. Otherwise, you will get warnings and build failures. Once ./usr/ is updated with the correct headers, it contains everything we need, so drop -Iinclude/uapi from the kdbus-workers CFLAGS. Change-Id: I05517c534f46b2362e3eedccbf4043484541d600 Signed-off-by: David Herrmann Signed-off-by: Greg Kroah-Hartman Signed-off-by: Paul Osmialowski --- diff --git a/samples/kdbus/Makefile b/samples/kdbus/Makefile index eee9b9aed632..e714602b6260 100644 --- a/samples/kdbus/Makefile +++ b/samples/kdbus/Makefile @@ -5,7 +5,5 @@ hostprogs-y += kdbus-workers always := $(hostprogs-y) -HOSTCFLAGS_kdbus-workers.o += \ - -I$(objtree)/usr/include/ \ - -I$(objtree)/include/uapi/ +HOSTCFLAGS_kdbus-workers.o += -I$(objtree)/usr/include HOSTLOADLIBES_kdbus-workers := -lrt