diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-21 14:56:24 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-21 14:56:24 -0500 |
commit | ccb576aa671246fd123b5ca8ff8263a6be7c8bff (patch) | |
tree | 929a41eb8929a3ff3289632b82b8c3bde7756914 /scripts/pruneemptydirs | |
parent | 1e2cd75fe5dfa3783d839bc1e319629ded446ffb (diff) | |
download | tdesdk-ccb576aa671246fd123b5ca8ff8263a6be7c8bff.tar.gz tdesdk-ccb576aa671246fd123b5ca8ff8263a6be7c8bff.zip |
Fix inadvertent tq changes.
Diffstat (limited to 'scripts/pruneemptydirs')
-rwxr-xr-x | scripts/pruneemptydirs | 2 |
1 files changed, 1 insertions, 1 deletions
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 |