Browse Source

-bugzilla #32062, allow javah to use filesets

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@582709 13f79535-47bb-0310-9956-ffa450edef68
master
Kevin Jackson 17 years ago
parent
commit
4dcddd59e5
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      src/etc/testcases/taskdefs/optional/javah/build.xml

+ 11
- 0
src/etc/testcases/taskdefs/optional/javah/build.xml View File

@@ -45,4 +45,15 @@
</classpath>
</javah>
</target>
<target name="test-fileset" depends="compile">
<javah destdir="${out}">
<fileset dir="${out}">
<include name="**/*.class"/>
</fileset>
<classpath>
<pathelement location="${out}"/>
</classpath>
</javah>
</target>
</project>

Loading…
Cancel
Save