From a0a12ecd2c0f583f9587bdab8bbecf437f4a1aef Mon Sep 17 00:00:00 2001 From: "Tom G. Christensen" Date: Wed, 24 Dec 2003 11:31:39 +0000 Subject: [PATCH] Irix 5.3 took exception to rm -rf'ing the directory directly This seems to work around it. --- buildpkg.functions | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildpkg.functions b/buildpkg.functions index f9039d1..a33e1cc 100644 --- a/buildpkg.functions +++ b/buildpkg.functions @@ -287,7 +287,8 @@ fix_man() $GZIP ../$catdir/$j done cd .. - rm -rf $i + rm -rf $i/* + rmdir $i fi done }