13
0

Modify the format make target to correctly find all xml files in the xml/ directory and any subdirectories

git-svn-id: svn://localhost/ardour2/trunk@2330 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Tim Mayberry 2007-08-19 02:45:24 +00:00
parent a7f98aa315
commit 0ff6c025c5

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