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
This commit is contained in:
Tim Mayberry 2008-07-10 10:41:45 +00:00
parent 67cac4aa6e
commit 8c3cd90e1f
1 changed files with 1 additions and 1 deletions

View File

@ -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