First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 9394
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Karl Trygve Kalleberg (RETIRED) <karltk@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Nathan Hollingsworth <bugzilla@nexia.ca>
Add CC:
CC:
Remove selected CCs
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 9394 depends on: Show dependency tree
Bug 9394 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2002-10-20 12:53 0000
Currently /usr/bin/ant reads:
<snip>
if [ -f $HOME/.gentoo/java-env ] ; then
  source $HOME/.gentoo/java-env
else
  JAVA_HOME=`java-config --jdk-home`
  if [ -z $JAVA_HOME ] ; then
    JAVA_HOME=`java-config --jre-home`
  CLASSPATH=`java-config --classpath`
fi
<snip>

It should read:
<snip>
if [ -f $HOME/.gentoo/java-env ] ; then
  source $HOME/.gentoo/java-env
else
  JAVA_HOME=`java-config --jdk-home`
  if [ -z $JAVA_HOME ] ; then
    JAVA_HOME=`java-config --jre-home`
  fi
  CLASSPATH=`java-config --classpath`
fi
<snip>

------- Comment #1 From squeeze@users.sourceforge.net 2002-10-21 07:00:58 0000 -------
... and currently /usr/bin/ant reads:

<snip>
JAVACMD="${JAVA_HOME}/java"
</snip>

Shoud read:
<snip>
JAVACMD="${JAVA_HOME}/bin/java"
</snip>

and a superior solution :):
<snip>
JAVACMD=`java-config --java`
</snip>

------- Comment #2 From Karl Trygve Kalleberg (RETIRED) 2002-10-26 07:55:26 0000 -------
Fixed. Didn't bump. Try dev-java/ant-1.5.1

First Last Prev Next    No search results available      Search page      Enter new bug