From: Jeff King Date: Wed, 14 Dec 2016 14:26:55 +0000 (-0500) Subject: Makefile: reformat FIND_SOURCE_FILES X-Git-Tag: v2.11.1~21^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e951ebca91d914e3fb579011c9218f59c67cf2fd;p=thirdparty%2Fgit.git Makefile: reformat FIND_SOURCE_FILES As we add to this in future commits, the formatting is going to make it harder and harder to read. Let's write it more as we would in a shell script, putting each logical block on its own line. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index f53fcc90d7..f42b1953d8 100644 --- a/Makefile +++ b/Makefile @@ -2149,9 +2149,12 @@ endif po/build/locale/%/LC_MESSAGES/git.mo: po/%.po $(QUIET_MSGFMT)mkdir -p $(dir $@) && $(MSGFMT) -o $@ $< -FIND_SOURCE_FILES = ( git ls-files '*.[hcS]' 2>/dev/null || \ - $(FIND) . \( -name .git -type d -prune \) \ - -o \( -name '*.[hcS]' -type f -print \) ) +FIND_SOURCE_FILES = ( \ + git ls-files '*.[hcS]' 2>/dev/null || \ + $(FIND) . \ + \( -name .git -type d -prune \) \ + -o \( -name '*.[hcS]' -type f -print \) \ + ) $(ETAGS_TARGET): FORCE $(RM) $(ETAGS_TARGET)