aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2011-03-23 15:05:54 -0700
committerGraydon Hoare <[email protected]>2011-03-23 15:05:54 -0700
commit0a42d5ae62771cbcdc4589ea9a019d8dbecb0ae7 (patch)
tree947f46826d2b3e2dd9225bc2da873d8c6742b2b8 /Makefile.in
parentMore miserable win32 configury fixes. Getting closer. (diff)
downloadrust-0a42d5ae62771cbcdc4589ea9a019d8dbecb0ae7.tar.xz
rust-0a42d5ae62771cbcdc4589ea9a019d8dbecb0ae7.zip
Split too-long 'tidy' command-line up using xargs, for win32.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 619862e6..14993f14 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1129,11 +1129,12 @@ distcheck: $(PKG_TAR)
tidy:
@$(call E, check: formatting)
- $(Q)python $(S)src/etc/tidy.py \
+ $(Q)echo \
$(filter-out $(GENERATED) $(addprefix $(S)src/, $(GENERATED)) \
$(addprefix $(S)src/, $(RUSTLLVM_CS) $(RUSTLLVM_HDR) \
$(PKG_3RDPARTY)) \
- $(S)src/etc/%, $(PKG_FILES))
+ $(S)src/etc/%, $(PKG_FILES)) \
+ | xargs -n 10 python $(S)src/etc/tidy.py
clean:
@$(call E, cleaning)