diff options
| author | Graydon Hoare <[email protected]> | 2011-03-23 15:05:54 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-23 15:05:54 -0700 |
| commit | 0a42d5ae62771cbcdc4589ea9a019d8dbecb0ae7 (patch) | |
| tree | 947f46826d2b3e2dd9225bc2da873d8c6742b2b8 /Makefile.in | |
| parent | More miserable win32 configury fixes. Getting closer. (diff) | |
| download | rust-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.in | 5 |
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) |