only dirs

Original commit message from CVS:
only dirs
This commit is contained in:
Thomas Vander Stichele 2005-04-11 12:02:13 +00:00
parent 9e8f394424
commit 9c38221ca7
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ install-pluginLTLIBRARIES:
CLEANFILES = core.* test-registry.xml
clean-local:
for i in find . -name .libs; do \
for i in find . -name ".libs" -type d; do \
rm -rf $$i; \
done

View file

@ -18,7 +18,7 @@ install-pluginLTLIBRARIES:
CLEANFILES = core.* test-registry.xml
clean-local:
for i in find . -name .libs; do \
for i in find . -name ".libs" -type d; do \
rm -rf $$i; \
done