build: Split up tidy command further to make arg list shorter
Distcheck was failing on the linux bots - too many arguments to tidy
This commit is contained in:
parent
24e921f7d4
commit
92470336dd
|
@ -124,8 +124,6 @@ tidy:
|
|||
@$(call E, check: formatting)
|
||||
$(Q)echo \
|
||||
$(wildcard $(S)src/etc/*.py) \
|
||||
$(ALL_CS) \
|
||||
$(ALL_HS) \
|
||||
$(COMPILER_CRATE) \
|
||||
$(COMPILER_INPUTS) \
|
||||
$(CORELIB_CRATE) \
|
||||
|
@ -142,6 +140,11 @@ tidy:
|
|||
$(Q)echo \
|
||||
$(ALL_TEST_INPUTS) \
|
||||
| xargs -n 10 python $(S)src/etc/tidy.py
|
||||
$(Q)echo \
|
||||
$(ALL_CS) \
|
||||
$(ALL_HS) \
|
||||
| xargs -n 10 python $(S)src/etc/tidy.py
|
||||
|
||||
endif
|
||||
|
||||
######################################################################
|
||||
|
|
Loading…
Reference in New Issue