Skip to content

Commit

Permalink
Removed the 'jdk1.4' suffix appended to the binary artifacts. There's…
Browse files Browse the repository at this point in the history
… no point in making the distinction anymore since there is only one binary now

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_95@638316 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Vincent Hennebert committed Mar 18, 2008
1 parent 43bd859 commit 8e0bc41
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1203,10 +1203,9 @@ NOTE:
<copy todir="${dist.bin.result.dir}/build" file="build/fop.jar"/>
<chmod file="${dist.bin.result.dir}/fop" perm="ugo+rx"/>

<property name="bin.suffix" value="bin-jdk${java.specification.version}"/>
<zip zipfile="${name}-${version}-${bin.suffix}.zip" basedir="${dist.bin.dir}" includes="**"/>
<zip zipfile="${name}-${version}-bin.zip" basedir="${dist.bin.dir}" includes="**"/>
<tar longfile="gnu"
destfile="${name}-${version}-${bin.suffix}.tar">
destfile="${name}-${version}-bin.tar">
<tarfileset dir="${dist.bin.dir}" mode="755">
<include name="${name}-${version}/fop"/>
</tarfileset>
Expand All @@ -1215,8 +1214,8 @@ NOTE:
<exclude name="${name}-${version}/fop"/>
</tarfileset>
</tar>
<gzip zipfile="${name}-${version}-${bin.suffix}.tar.gz" src="${name}-${version}-${bin.suffix}.tar"/>
<delete file="${name}-${version}-${bin.suffix}.tar"/>
<gzip zipfile="${name}-${version}-bin.tar.gz" src="${name}-${version}-bin.tar"/>
<delete file="${name}-${version}-bin.tar"/>
</target>

<target name="dist-src" depends="all">
Expand Down

0 comments on commit 8e0bc41

Please sign in to comment.