diff options
author | Simon Steiner <ssteiner@apache.org> | 2018-03-06 09:42:19 +0000 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2018-03-06 09:42:19 +0000 |
commit | c573724688e518f4c4587b791941fc3c3a66ceb2 (patch) | |
tree | 7d149e69a9ad83c324f2c8223d91f5ceffbd0592 | |
parent | 37bfd1135cf869ce3a56e8f49e90b7acb5af7996 (diff) | |
download | xmlgraphics-fop-c573724688e518f4c4587b791941fc3c3a66ceb2.tar.gz xmlgraphics-fop-c573724688e518f4c4587b791941fc3c3a66ceb2.zip |
Switch to sha256
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1825966 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | fop/build.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/fop/build.xml b/fop/build.xml index f0cc1340f..177dbbaf3 100644 --- a/fop/build.xml +++ b/fop/build.xml @@ -1311,28 +1311,28 @@ NOTE: <target name="release-dist" depends="dist" description="Generates the distribution package and signs the release"> <property name="bin.suffix" value="bin"/> <input message="Passphrase for your default private key (attention: passphrase will be echoed in clear text on the display!)" addproperty="pwd"/> - <antcall target="md5"> + <antcall target="sha256"> <param name="sign.archive" value="${name}-${version}-src.zip"/> </antcall> <antcall target="sign-file"> <param name="sign.archive" value="${name}-${version}-src.zip"/> <param name="pwd" value="${pwd}"/> </antcall> - <antcall target="md5"> + <antcall target="sha256"> <param name="sign.archive" value="${name}-${version}-src.tar.gz"/> </antcall> <antcall target="sign-file"> <param name="sign.archive" value="${name}-${version}-src.tar.gz"/> <param name="pwd" value="${pwd}"/> </antcall> - <antcall target="md5"> + <antcall target="sha256"> <param name="sign.archive" value="${name}-${version}-${bin.suffix}.zip"/> </antcall> <antcall target="sign-file"> <param name="sign.archive" value="${name}-${version}-${bin.suffix}.zip"/> <param name="pwd" value="${pwd}"/> </antcall> - <antcall target="md5"> + <antcall target="sha256"> <param name="sign.archive" value="${name}-${version}-${bin.suffix}.tar.gz"/> </antcall> <antcall target="sign-file"> @@ -1340,11 +1340,11 @@ NOTE: <param name="pwd" value="${pwd}"/> </antcall> </target> - <target name="md5"> - <property name="md5.exec" value="md5sum"/> - <property name="md5.options" value=""/> - <exec executable="${md5.exec}" output="${sign.archive}.md5"> - <arg line="${md5.options} ${sign.archive}"/> + <target name="sha256"> + <property name="sha256.exec" value="sha256sum"/> + <property name="sha256.options" value=""/> + <exec executable="${sha256.exec}" output="${sign.archive}.sha256"> + <arg line="${sha256.options} ${sign.archive}"/> </exec> </target> <target name="sign-file"> |