diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-10-29 13:10:54 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-10-29 13:10:54 -0700 |
| commit | 24e10fe3003e77ab3e9c782fafc97ce38eab16f0 (patch) | |
| tree | c5d9754924b86ac46e5b24b646271aff0cdf7c6b | |
| parent | 5e5474e89552b27302ab779ab1c4c24c4ce15216 (diff) | |
build: Use correct python version. Closes #3883
| -rw-r--r-- | mk/tests.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/tests.mk b/mk/tests.mk index d8457a4f497..75da5c1220a 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -141,13 +141,13 @@ tidy: @$(call E, check: formatting) $(Q)find $(S)src -name '*.r[sc]' \ | grep '^$(S)src/test' -v \ - | xargs -n 10 python $(S)src/etc/tidy.py + | xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py $(Q)find $(S)src/etc -name '*.py' \ - | xargs -n 10 python $(S)src/etc/tidy.py + | xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py $(Q)echo $(ALL_CS) \ - | xargs -n 10 python $(S)src/etc/tidy.py + | xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py $(Q)echo $(ALL_HS) \ - | xargs -n 10 python $(S)src/etc/tidy.py + | xargs -n 10 $(CFG_PYTHON) $(S)src/etc/tidy.py endif |
