Irix 5.3 took exception to rm -rf'ing the directory directly

This seems to work around it.
This commit is contained in:
Tom G. Christensen 2003-12-24 11:31:39 +00:00
parent df172ec972
commit a0a12ecd2c

View File

@ -287,7 +287,8 @@ fix_man()
$GZIP ../$catdir/$j
done
cd ..
rm -rf $i
rm -rf $i/*
rmdir $i
fi
done
}