From b7790a604438b251c25dd8fa609e1867b52795ad Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Wed, 30 Nov 2005 16:43:16 +0000 Subject: [PATCH] prune empty dirs when updating Original commit message from CVS: prune empty dirs when updating --- scripts/cvs-update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cvs-update.sh b/scripts/cvs-update.sh index 3ab8b17f77..fb8ea28833 100755 --- a/scripts/cvs-update.sh +++ b/scripts/cvs-update.sh @@ -16,7 +16,7 @@ for m in \ ; do if test -d $m; then cd $m - cvs update -d + cvs update -dP if test $? -ne 0 then FAILURE="$FAILURE$m: update\n"