From 0ff6c025c5264ed01f9ff8e00a5d8dca8b83395e Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Sun, 19 Aug 2007 02:45:24 +0000 Subject: [PATCH] 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 --- manual/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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