Skip to content

Commit

Permalink
Reference to local bin directory no longer required for "pure" Xalan …
Browse files Browse the repository at this point in the history
…work now that extensions have been rolled up.
  • Loading branch information
iay committed Aug 20, 2009
1 parent 05f9bfa commit 3059d76
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,6 @@
<fileset dir="${tools.xalan}/lib">
<include name="**/*.jar"/>
</fileset>
<pathelement path="${bin.dir}"/>
</classpath>
<jvmarg value="-Djava.endorsed.dirs=${tools.xalan}/endorsed"/>
<arg value="-IN"/>
Expand Down Expand Up @@ -546,7 +545,6 @@
<fileset dir="${tools.xalan}/lib">
<include name="**/*.jar"/>
</fileset>
<pathelement path="${bin.dir}"/>
</classpath>
<jvmarg value="-Djava.endorsed.dirs=${tools.xalan}/endorsed"/>
<arg value="-IN"/>
Expand Down
2 changes: 1 addition & 1 deletion build/Xalan.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ sub xalanCall
$res .= " -Djava.endorsed.dirs=$xalanRoot/endorsed";

# Classpath
my $classpath = '../bin';
my $classpath = '';
while (glob "$xalanRoot/lib/*") {
$classpath .= ':' unless $classpath eq '';
$classpath .= $_;
Expand Down

0 comments on commit 3059d76

Please sign in to comment.