This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository javatools.
commit 41aef7e4fb46b9c1c06d112f4f293daa6d43a161 Author: Emmanuel Bourg <[email protected]> Date: Sun Oct 12 12:08:49 2014 +0200 Add the -notimestamp option when invoking javadoc --- debian/changelog | 1 + jh_build | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/debian/changelog b/debian/changelog index 0d0f2ff..882324f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ javatools (0.49) UNRELEASED; urgency=medium * Team upload. + * Add the -notimestamp option when invoking javadoc * Removed Matthew Johnson from the uploaders (Closes: #762560) * Standards-Version updated to 3.9.6 (no changes) * Switch to debhelper level 9 diff --git a/jh_build b/jh_build index e898f30..29af20e 100755 --- a/jh_build +++ b/jh_build @@ -63,6 +63,10 @@ if ! grep -- -source <<< "$JH_JAVADOC_OPTS" &>/dev/null; then JH_JAVADOC_OPTS="-source 1.5 $JH_JAVADOC_OPTS" fi +if ! grep -- -notimestamp <<< "$JH_JAVADOC_OPTS" &>/dev/null; then + JH_JAVADOC_OPTS="-notimestamp $JH_JAVADOC_OPTS" +fi + function dobuild() { -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/javatools.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

