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 <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jeff King committed
Dec 14, 2016 at 09:26 UTC
e951ebca91d914e3fb579011c9218f59c67cf2fd
1 file changed
+6
-3
Makefile
+6
-3
@@ -2149,9 +2149,12 @@ endif
2149
po/build/locale/%/LC_MESSAGES/git.mo: po/%.po
2150
$(QUIET_MSGFMT)mkdir -p $(dir $@) && $(MSGFMT) -o $@ $<
2151
2152
-FIND_SOURCE_FILES = ( git ls-files '*.[hcS]' 2>/dev/null || \
2153
- $(FIND) . \( -name .git -type d -prune \) \
2154
- -o \( -name '*.[hcS]' -type f -print \) )
2152
+FIND_SOURCE_FILES = ( \
2153
+ git ls-files '*.[hcS]' 2>/dev/null || \
2154
+ $(FIND) . \
2155
+ \( -name .git -type d -prune \) \
2156
+ -o \( -name '*.[hcS]' -type f -print \) \
2157
+ )
2158
2159
$(ETAGS_TARGET): FORCE
2160
$(RM) $(ETAGS_TARGET)