cmake: kernel_all.c does not depend upon any generation

`c_arguments_deps` is meant to be the dependencies needed if directly using the CMAKE_C_FLAGS
variable, but we are not using that here and so the dependency is redundant
This commit is contained in:
Adrian Danis 2018-02-15 14:43:39 +11:00
parent c499f7004b
commit c77e3b52a1

View file

@ -191,7 +191,7 @@ list(APPEND c_arguments_deps kernel_autoconf_Gen
add_custom_command(OUTPUT kernel_all.c
COMMAND "${CPP_GEN_PATH}" ${c_sources} > kernel_all.c
DEPENDS "${CPP_GEN_PATH}" ${c_sources} ${c_arguments_deps}
DEPENDS "${CPP_GEN_PATH}" ${c_sources}
COMMENT "Concatenating C files"
VERBATIM
)