Re: [PATCH v3 19/23] Makefile: correct the dependency graph of hook-list.h
From: Mike Hommey <hidden>
Date: 2021-11-17 02:52:28
From: Mike Hommey <hidden>
Date: 2021-11-17 02:52:28
On Tue, Nov 16, 2021 at 01:00:19PM +0100, Ævar Arnfjörð Bjarmason wrote:
Fix an issue in my cfe853e66be (hook-list.h: add a generated list of hooks, like config-list.h, 2021-09-26), the builtin/help.c was inadvertently made to depend on hook-list.h, but it's used by builtin/bugreport.c. Reported-by: Mike Hommey <redacted> Signed-off-by: Ævar Arnfjörð Bjarmason <redacted> --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)diff --git a/Makefile b/Makefile index 0a3f292bf82..bae20eb1b40 100644 --- a/Makefile +++ b/Makefile@@ -2162,8 +2162,9 @@ git$X: git.o GIT-LDFLAGS $(BUILTIN_OBJS) $(GITLIBS) help.sp help.s help.o: command-list.h hook.sp hook.s hook.o: hook-list.h
You can remove this line too. Mike