I've got a package up for review
(https://bugzilla.redhat.com/show_bug.cgi?id=316141) that builds fine
for F8, and for devel-x86_64 but fails on devel-ppc during a java compile.
Error
(http://koji.fedoraproject.org/koji/getfile?taskID=243056&name=build.log)
is:
_____Making JAVA targets_____
Buildfile: build.xml
init:
drmaa:
[java] Buildfile: build.xml
[java]
[java] init:
[java]
[java] BUILD FAILED
[java]
/builddir/build/BUILD/gridengine/source/classes/build.xml:42: Execute
failed: java.io.IOException: java.io.IOException: No such file or directory
[java]
[java] Total time: 1 second
BUILD FAILED
/builddir/build/BUILD/gridengine/source/build.xml:39: The following
error occurred while executing this line:
/builddir/build/BUILD/gridengine/source/build.xml:18: Java returned: 1
I've attached build.xml. I'm at a loss. Any suggestions for debugging
would be greatly appreciated.
--
Orion Poplawski
Technical Manager 303-415-9701 x222
NWRA/CoRA Division FAX: 303-415-9702
3380 Mitchell Lane orion@xxxxxxxxxxxxx
Boulder, CO 80301 http://www.cora.nwra.com
<?xml version="1.0" encoding="UTF-8"?>
<project name="Gridengine Java" default="all" basedir=".">
<description>Builds the java parts of gridengine</description>
<target name="init">
<property file="build_private.properties"/>
<property file="build.properties"/>
<macrodef name="myant">
<attribute name="target" default=""/>
<!-- attribute name="args" default="${sge.ant.args}"/ -->
<attribute name="dir" default="${basedir}"/>
<sequential>
<java classname="org.apache.tools.ant.launch.Launcher"
fork="true" failonerror="true"
dir="@{dir}">
<jvmarg value="-Djava.compiler=none"/>
<classpath>
<pathelement path="${java.class.path}"/>
<pathelement location="${libs.junit.classpath}"/>
</classpath>
<!-- arg line="@{args} @{target}"/ -->
<arg line="@{target}"/>
</java>
</sequential>
</macrodef>
</target>
<target name="all" depends="drmaa, juti, jgdi"/>
<target name="depend" depends="init"/>
<target name="clean" depends="drmaa.clean, juti.clean, jgdi.clean"/>
<target name="javadoc" depends="drmaa.javadoc, juti.javadoc, jgdi.javadoc"/>
<target name="test" depends="drmaa.test, juti.test, jgdi.test"/>
<!-- DRMAA -->
<target name="drmaa" depends="init">
<myant dir="classes"/>
</target>
<target name="drmaa.clean" depends="init">
<myant dir="classes" target="clean"/>
</target>
<target name="drmaa.javadoc" depends="init">
<myant dir="classes" target="javadoc"/>
</target>
<target name="drmaa.test" depends="init">
<myant dir="classes" target="test"/>
</target>
<!-- JUTI -->
<target name="juti" depends="init">
<myant dir="libs/juti"/>
</target>
<target name="juti.clean" depends="init">
<myant dir="libs/juti" target="clean"/>
</target>
<target name="juti.javadoc" depends="init">
<myant dir="libs/juti" target="javadoc"/>
</target>
<target name="juti.test" depends="init">
<myant dir="libs/juti" target="test"/>
</target>
<!-- JGDI -->
<target name="jgdi" depends="init">
<myant dir="libs/jgdi"/>
</target>
<target name="jgdi.clean" depends="init">
<myant dir="libs/jgdi" target="clean"/>
</target>
<target name="jgdi.javadoc" depends="init">
<myant dir="libs/jgdi" target="javadoc"/>
</target>
<target name="jgdi.test" depends="init">
<myant dir="libs/jgdi" target="test"/>
</target>
</project>
--
fedora-devel-java-list mailing list
fedora-devel-java-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/fedora-devel-java-list