Skip to content

Commit b9fa3ba

Browse files
committed
Merge branch 'sg/bugreport-fixes'
The dependencies for config-list.h and command-list.h were broken when the former was split out of the latter, which has been corrected. * sg/bugreport-fixes: Makefile: add missing dependencies of 'config-list.h'
2 parents 092bf77 + 56550ea commit b9fa3ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2204,13 +2204,13 @@ $(BUILT_INS): git$X
22042204

22052205
config-list.h: generate-configlist.sh
22062206

2207-
config-list.h:
2207+
config-list.h: Documentation/*config.txt Documentation/config/*.txt
22082208
$(QUIET_GEN)$(SHELL_PATH) ./generate-configlist.sh \
22092209
>$@+ && mv $@+ $@
22102210

22112211
command-list.h: generate-cmdlist.sh command-list.txt
22122212

2213-
command-list.h: $(wildcard Documentation/git*.txt) Documentation/*config.txt Documentation/config/*.txt
2213+
command-list.h: $(wildcard Documentation/git*.txt)
22142214
$(QUIET_GEN)$(SHELL_PATH) ./generate-cmdlist.sh \
22152215
$(patsubst %,--exclude-program %,$(EXCLUDED_PROGRAMS)) \
22162216
command-list.txt >$@+ && mv $@+ $@

0 commit comments

Comments
 (0)