Date: Thu, 29 Jul 1999 13:59:08 +0200 (CEST) From: Andrej Brodnik (Andy) <brodnik@IBC.IskraSistemi.Si> To: chris@sdata.de (Christoph Splittgerber) Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: overuninstall.sh and i4b_rbch_ioctl.h Message-ID: <199907291159.NAA16740@Dolinca.IBC.IskraSistemi.Si> In-Reply-To: <37A03B8C.1BDF75D5@sdata.de> from Christoph Splittgerber at "Jul 29, 1999 1:31:24 pm"
next in thread | previous in thread | raw e-mail | index | archive | help
> Date: Thu, 29 Jul 1999 13:31:24 +0200 > From: Christoph Splittgerber <chris@sdata.de> > Subject: overuninstall.sh and i4b_rbch_ioctl.h > > I had a look at overuninstall.sh: > > it contains the call: > > remove_and_restore $MACHINE/i4b_rbch_ioctl.h # (line 104) > > .. however function remove_and_restore contains: > > <snip> > if [ -e $1-BACKUP ] > then > echo "moving $1-BACKUP" > echo " back to $1" > $RMCMD $1 > ... > <snip> > > ... so $1-BACKUP, in this case "i4b_rbch_ioctl.h-BACKUP" did not exist > in pre 00.82 releases and so the "RMCMD $1" is not executed! I suggest that the above segmet is changed into: <snip> $RMCMD $1 if [ -e $1-BACKUP ] then echo "moving $1-BACKUP" echo " back to $1" ... <snip> Can I do anything in this regard? LPA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199907291159.NAA16740>