commit | d8672b40d3a6f17de5b5bc71d6e531d7576a856a | [log] [tgz] |
---|---|---|
author | Sam Ravnborg <sam@ravnborg.org> | Fri Nov 21 21:50:02 2008 +0100 |
committer | Sam Ravnborg <sam@ravnborg.org> | Wed Dec 03 21:31:59 2008 +0100 |
tree | d0792fab67fbdc54f7d3eef7339f456625ed7f52 | |
parent | 5b91c33cf295d9c235f587f29a8c0a7ae15a5320 [diff] |
kbuild: expand -I in KBUILD_CPPFLAGS kbuild failed to expand include flags in KBUILD_CPPFLAGS resulting in code like this in arch Makefiles: ifeq ($(KBUILD_SRC),) KBUILD_CPPFLAGS += -Iinclude/foo else KBUILD_CPPFLAGS += -I$(srctree)/include/foo endif Move use of LINUXINCLUDE into Makefile.lib to allow us to expand -I directives of KBUILD_CPPFLAGS so we can avoid the above code. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>