summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2008-07-10 10:41:45 +0000
committerTim Mayberry <mojofunk@gmail.com>2008-07-10 10:41:45 +0000
commit8c3cd90e1fe160b85f6cdd6dbf1041661269f3d5 (patch)
treeb544ef1d83eecd568c8b9b1cf5f0edb95374f695 /manual
parent67cac4aa6e5d7e6403edb71d2845175c3788d787 (diff)
Modify the format make target to correctly find all xml files in the xml/ directory and any subdirectories
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3569 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'manual')
-rw-r--r--manual/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/Makefile b/manual/Makefile
index d45d477679..a64394792d 100644
--- a/manual/Makefile
+++ b/manual/Makefile
@@ -51,7 +51,7 @@ test::
.PHONY : test
format:: test
- @for file in `find xml/*.xml`; \
+ @for file in `find xml/ -name '*.xml' -type f`; \
do xmlformat/xmlformat.pl --in-place --backup .bak \
--config-file xmlformat/xmlformat-ardour.conf $$file; \
done