diff options
author | arved <arved@unknown> | 2001-08-12 17:37:25 +0000 |
---|---|---|
committer | arved <arved@unknown> | 2001-08-12 17:37:25 +0000 |
commit | 97e96c821c758fcace65d58ddeda0d99f7d55783 (patch) | |
tree | b39113d580831ecd5822b20c11315cd0074509d7 | |
parent | e2a7ae65e32901562a7320119e5f5429ce4e0e92 (diff) | |
download | xmlgraphics-fop-97e96c821c758fcace65d58ddeda0d99f7d55783.tar.gz xmlgraphics-fop-97e96c821c758fcace65d58ddeda0d99f7d55783.zip |
AHS: tweaks to process
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194412 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build.xml | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -631,9 +631,9 @@ Sometimes ant gives out this warnings, but the build is finished without any pro <!-- =================================================================== --> <!-- Creates the distribution --> <!-- =================================================================== --> - <target name="dist" depends="dist-src"/> + <target name="dist" depends="dist-src,dist-bin"/> - <target name="dist-bin" depends="package, javadocs"> + <target name="dist-bin" depends="package"> <echo message="Building the binary distribution files (zip,tar)"/> <mkdir dir="${dist.bin.result.dir}"/> <copy todir="${dist.bin.result.dir}"> @@ -642,6 +642,7 @@ Sometimes ant gives out this warnings, but the build is finished without any pro </copy> <mkdir dir="${dist.bin.result.dir}/build"/> <copy todir="${dist.bin.result.dir}/build" file="build/fop.jar"/> + <chmod file="${dist.bin.result.dir}/fop.sh" perm="ugo+rx" /> <zip zipfile="${Name}-${version}-bin.zip" basedir="${dist.bin.dir}" includes="**"/> <tar tarfile="${Name}-${version}-bin.tar" basedir="${dist.bin.dir}" includes="**"/> @@ -663,6 +664,7 @@ Sometimes ant gives out this warnings, but the build is finished without any pro <mkdir dir="${dist.src.result.dir}/build"/> <copy todir="${dist.src.result.dir}/build" file="build/fop.jar"/> <chmod file="${dist.src.result.dir}/build.sh" perm="ugo+rx" /> + <chmod file="${dist.src.result.dir}/fop.sh" perm="ugo+rx" /> <zip zipfile="${Name}-${version}-src.zip" basedir="${dist.src.dir}" includes="**"/> <tar tarfile="${Name}-${version}-src.tar" basedir="${dist.src.dir}" includes="**"/> |