From e3665bde5dbeef3473df95eed0b1550ee679765f Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Wed, 13 Aug 2008 17:41:40 +0100 Subject: [PATCH] [test/Makefile.am] Match *-out.{pdf,ps,svg} When cleaning files, limit the glob to only match *-out.{pdf,ps,svg} in order to distinguish the current practice of naming vector output files from possible future vector target/reference files. --- test/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index 0dec0ac62..939640eca 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -915,9 +915,9 @@ CLEANFILES = \ # Then it became a fancy find using many GNU extensions, but then the ugly # reality of portability was raised and it became.... clean-local: - -${FIND} . -name '*.ps' -print | ${XARGS} ${RM} - -${FIND} . -name '*.pdf' -print | ${XARGS} ${RM} - -${FIND} . -name '*.svg' -print | ${XARGS} ${RM} + -${FIND} . -name '*-out.ps' -print | ${XARGS} ${RM} + -${FIND} . -name '*-out.pdf' -print | ${XARGS} ${RM} + -${FIND} . -name '*-out.svg' -print | ${XARGS} ${RM} -${FIND} . -name '*-out.png' -print | ${XARGS} ${RM} -${FIND} . -name '*-diff.png' -print | ${XARGS} ${RM} -${FIND} . -name '*.log' -print | ${XARGS} ${RM}