From 9c38221ca7b600800dea76f831190efd16d70626 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 11 Apr 2005 12:02:13 +0000 Subject: [PATCH] only dirs Original commit message from CVS: only dirs --- check/Makefile.am | 2 +- tests/check/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/check/Makefile.am b/check/Makefile.am index ff58328f87..67baec2c1e 100644 --- a/check/Makefile.am +++ b/check/Makefile.am @@ -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 diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am index ff58328f87..67baec2c1e 100644 --- a/tests/check/Makefile.am +++ b/tests/check/Makefile.am @@ -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