From ccb576aa671246fd123b5ca8ff8263a6be7c8bff Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sun, 21 Oct 2012 14:56:24 -0500 Subject: Fix inadvertent tq changes. --- scripts/pruneemptydirs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/pruneemptydirs') diff --git a/scripts/pruneemptydirs b/scripts/pruneemptydirs index 528c0ee8..6f177a0f 100755 --- a/scripts/pruneemptydirs +++ b/scripts/pruneemptydirs @@ -20,7 +20,7 @@ files=`find . -type d | grep -v CVS\$ | grep -v admin\$ | grep -v .libs\$ | fgre toremove="rm -rf"; for i in $files; do if test -d $i; then # List their contents and filter out generated files - realfiles=`find $i -type f | egrep -v '.svn|CVS/|Makefile$|Makefile.in$|Makefile.rules.in$|Makefile.calls.in$|\.o$|\.lo$|\.rpo$|\.la$|\.tqmoc|/\.#' ` + realfiles=`find $i -type f | egrep -v '.svn|CVS/|Makefile$|Makefile.in$|Makefile.rules.in$|Makefile.calls.in$|\.o$|\.lo$|\.rpo$|\.la$|\.moc|/\.#' ` if [ -z "$realfiles" ]; then toremove="$toremove '$i'" fi -- cgit v1.2.1