diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-10-14 00:15:57 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-10-14 00:15:57 +0200 |
commit | a5e61a4225a7319ab5fdd6d7b63e250f5b08255c (patch) | |
tree | d1906b338a383f38262a6e5d78b4fbfe24363311 /config.mak.uname | |
parent | Merge branch 'ab/lib-subtest' (diff) | |
parent | hook-list.h: add a generated list of hooks, like config-list.h (diff) | |
download | git-a5e61a4225a7319ab5fdd6d7b63e250f5b08255c.tar.xz git-a5e61a4225a7319ab5fdd6d7b63e250f5b08255c.zip |
Merge branch 'ab/config-based-hooks-1'
Mostly preliminary clean-up in the hook API.
* ab/config-based-hooks-1:
hook-list.h: add a generated list of hooks, like config-list.h
hook.c users: use "hook_exists()" instead of "find_hook()"
hook.c: add a hook_exists() wrapper and use it in bugreport.c
hook.[ch]: move find_hook() from run-command.c to hook.c
Makefile: remove an out-of-date comment
Makefile: don't perform "mv $@+ $@" dance for $(GENERATED_H)
Makefile: stop hardcoding {command,config}-list.h
Makefile: mark "check" target as .PHONY
Diffstat (limited to 'config.mak.uname')
-rw-r--r-- | config.mak.uname | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.mak.uname b/config.mak.uname index 2b178bad58..3236a4918a 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -739,9 +739,9 @@ vcxproj: echo '</Project>') >git-remote-http/LinkOrCopyRemoteHttp.targets git add -f git/LinkOrCopyBuiltins.targets git-remote-http/LinkOrCopyRemoteHttp.targets - # Add command-list.h and config-list.h - $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 config-list.h command-list.h - git add -f config-list.h command-list.h + # Add generated headers + $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 $(GENERATED_H) + git add -f $(GENERATED_H) # Add scripts rm -f perl/perl.mak |