Re: updatedb conversion to sh bug

2006-09-09 Thread Andreas Metzler
On 2006-09-10 Frank Berger <[EMAIL PROTECTED]> wrote: [...] > old=no > for arg > do > opt=`echo $args|sed 's/^\([^=]*\).*/\1/'` > val=`echo $args|sed 's/^[^=]*=\(.*\)/\1/'` > > The last two lines should be: > > opt=`echo $@|sed 's/^\([^=]*\).*/\1/'` > val=`echo $@|sed 's/^[^=]*=\(

updatedb conversion to sh bug

2006-09-09 Thread Frank Berger
Hello there, the updatedb-script of my findutils package has a little mistake in it that keeps it from running. Version is 4.1.20-r1 on architecture armeb (Linksys NSLU2, UNSLUNG). Right at the beginning, David MacKenzie forgot to change the variable for the command line options from $args to