mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 21:21:41 +00:00
kbuild: doc: remove outdated description of the limitation on -I usage
Kbuild used to manipulate header search paths, enforcing the odd
limitation of "no space after -I".
Commit cdd750bfb1
("kbuild: remove 'addtree' and 'flags' magic for
header search paths") stopped doing that. This limitation no longer
exists. Instead, you need to accurately specify the header search path.
(In this case, $(src)/include)
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <n.schier@avm.de>
This commit is contained in:
parent
1a59bd3ca5
commit
a866eda43f
@ -328,13 +328,9 @@ according to the following rule:
|
||||
--> filename: Kbuild
|
||||
obj-m := 8123.o
|
||||
|
||||
ccflags-y := -Iinclude
|
||||
ccflags-y := -I $(src)/include
|
||||
8123-y := 8123_if.o 8123_pci.o 8123_bin.o
|
||||
|
||||
Note that in the assignment there is no space between -I and
|
||||
the path. This is a limitation of kbuild: there must be no
|
||||
space present.
|
||||
|
||||
4.3 Several Subdirectories
|
||||
--------------------------
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user