shouldn't the line in the patch be:
( if cd /tmp && [ "`find . -maxdepth 0 -perm -002`" = "." ]
instead of:
( if cd /tmp && [ "`find . -maxdepth -perm -002 0`" = "." ]
and also that patch doesn't seem to cover the other two errors:
find: warning: you have specified the -depth option after a non-option
argument !, but options are not positional (-depth affects tests
specified before it as well as those specified after it). Please
specify options before other arguments.
which are caused by the lines:
# First remove all old files.
find . -xdev $TEXPR $EXCEPT \
! -type d -depth -print0 | xargs -0r rm -f
# And then all empty directories.
find . -xdev $DEXPR $EXCEPT \
-type d -depth -empty -exec rmdir \{\} \;
rm -f .X*-lock
--
Thanks!
Richard
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]