You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Dan MacKay <da...@kingston.hummingbird.com> on 2000/12/07 16:59:11 UTC

Kaffee and linux build problems

To all of you who replied to the original post thanks and right you were.
When I ran java -version Kaffe is indeed the culprit.

Now this begs the question - how do I get rid of it?

Thanks,

Dan MacKay

Re: Kaffee and linux build problems

Posted by Stefan Bodewig <bo...@apache.org>.
Dan MacKay <da...@kingston.hummingbird.com> wrote:

> To all of you who replied to the original post thanks and right you
> were.  When I ran java -version Kaffe is indeed the culprit.
> 
> Now this begs the question - how do I get rid of it?

Find out which RPM it belongs to, something like

rpm -q -f /usr/bin/java

or wherever your kaffe resides. This will result in something like 
kaffee-1.0.22-12 (making up the name as I've never installed
kaffee). Next step, see if something else depends on it (replace
kaffee with the name the first command showed):

rpm -e --test kaffee

Hopefully, nothing depends on it, remove --test from the command line
above. There shouldn't be anything that depends on it AFAIK - I've
never been told I'd need it when I said "no" during installation.

Stefan