Skip to content

Commit 0a42d5a

Browse files
committed
Split too-long 'tidy' command-line up using xargs, for win32.
1 parent e696992 commit 0a42d5a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile.in

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1129,11 +1129,12 @@ distcheck: $(PKG_TAR)
11291129

11301130
tidy:
11311131
@$(call E, check: formatting)
1132-
$(Q)python $(S)src/etc/tidy.py \
1132+
$(Q)echo \
11331133
$(filter-out $(GENERATED) $(addprefix $(S)src/, $(GENERATED)) \
11341134
$(addprefix $(S)src/, $(RUSTLLVM_CS) $(RUSTLLVM_HDR) \
11351135
$(PKG_3RDPARTY)) \
1136-
$(S)src/etc/%, $(PKG_FILES))
1136+
$(S)src/etc/%, $(PKG_FILES)) \
1137+
| xargs -n 10 python $(S)src/etc/tidy.py
11371138

11381139
clean:
11391140
@$(call E, cleaning)

0 commit comments

Comments
 (0)