diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-06-04 06:13:57 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-06-15 06:57:01 -0400 |
commit | 7a739ce51dca77184e5fc7b4ad5696b32a5c9422 (patch) | |
tree | 788a51c4bd95c688c18b46098fe42fffeb3141a2 /Makefile | |
parent | 3a51f9081e7b4c7229e1d3cb5ec74bc27ae4ea84 (diff) |
kbuild: make gdb_script depend on prepare0 instead of prepare
'gdb_script' needs headers generated by ./Kbuild, which is visited
by 'prepare0'. None of 'gdb_script' depends on 'prepare'.
Loosen the dependency.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1540,7 +1540,7 @@ $(DOC_TARGETS): scripts_basic FORCE | |||
1540 | # --------------------------------------------------------------------------- | 1540 | # --------------------------------------------------------------------------- |
1541 | 1541 | ||
1542 | PHONY += scripts_gdb | 1542 | PHONY += scripts_gdb |
1543 | scripts_gdb: prepare | 1543 | scripts_gdb: prepare0 |
1544 | $(Q)$(MAKE) $(build)=scripts/gdb | 1544 | $(Q)$(MAKE) $(build)=scripts/gdb |
1545 | $(Q)ln -fsn $(abspath $(srctree)/scripts/gdb/vmlinux-gdb.py) | 1545 | $(Q)ln -fsn $(abspath $(srctree)/scripts/gdb/vmlinux-gdb.py) |
1546 | 1546 | ||