>>>>> Forwarded message from Bob Bernstein <[EMAIL PROTECTED]>
Date: Sun, 16 May 1999 19:17:01 +0000 (GMT) To: [email protected] Cc: [EMAIL PROTECTED] From: Bob Bernstein <[EMAIL PROTECTED]> Subject: Re: Get thee behind me emacs20! In-Reply-To: <[EMAIL PROTECTED]> X-Mailer: Ishmail 1.3.3-990123-linux <http://www.ishmail.com> MIME-Version: 1.0 Content-Type: text/plain Bob Bernstein <[EMAIL PROTECTED]> wrote: > Here's the 'dpkg -r' run; sorry about the length... ---- snip ---- > xemacs20 failed at /usr/lib/emacsen-common/emacs-remove line 28. > dpkg: error processing emacs20 (--remove): > subprocess pre-removal script returned error exit status 29 ---- snip ---- My brute-force frontal attack on this seems to have succeeded. I made these lines in the above noted script: sub execute { my(@cmd) = @_; if($dry_run) { print join(" ", @cmd) . "\n"; } else { if(system(@cmd) != 0) { die "emacs-$action: " . join(" ", @cmd) . " failed"; } } } ...look like this: sub execute { my(@cmd) = @_; } I'm not sure what I removed, but removing it caused things to move forward apace, and I apparently then succeeded in removing the emacs20 deb package. -- Bob Bernstein <[EMAIL PROTECTED]> at Esmond, R.I., USA << End forwarded message -- Bob Bernstein <[EMAIL PROTECTED]> at Esmond, R.I., USA

