diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 3a7deaebe..a6adec799 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -525,12 +525,12 @@ CLEANFILES = \ # most systems cannot handle all of our clean files together clean-local: - -find . -name '*.ps' -print | xargs rm - -find . -name '*.pdf' -print | xargs rm - -find . -name '*.svg' -print | xargs rm - -find . -name '*-out.png' -print | xargs rm - -find . -name '*-diff.png' -print | xargs rm - -find . -name '*.log' -print | xargs rm + -${FIND} . -name '*.ps' -print | ${XARGS} ${RM} + -${FIND} . -name '*.pdf' -print | ${XARGS} ${RM} + -${FIND} . -name '*.svg' -print | ${XARGS} ${RM} + -${FIND} . -name '*-out.png' -print | ${XARGS} ${RM} + -${FIND} . -name '*-diff.png' -print | ${XARGS} ${RM} + -${FIND} . -name '*.log' -print | ${XARGS} ${RM} # Check tests under valgrind # Saves log to valgrind-log |