summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Shadura <andrew.shadura@collabora.co.uk>2019-03-10 17:31:57 +0000
committerAndrej Shadura <andrew.shadura@collabora.co.uk>2019-03-10 17:32:08 +0000
commit83d0d2cad1852679fcfe8e50706b9dd321e940f1 (patch)
tree8c7051df33fb798d8d11a799c69b1f688b06a71c
parentac6e9e7df0addd0d2bf932f78f6ef3a93b2995a1 (diff)
Use @javadoc_opts instead of $JH_JAVADOC_OPTS
-rwxr-xr-xjh_build2
1 files changed, 1 insertions, 1 deletions
diff --git a/jh_build b/jh_build
index 70e344b..e7f95a7 100755
--- a/jh_build
+++ b/jh_build
@@ -222,7 +222,7 @@ sub do_build {
my $files_escaped = escape_shell(@srcfiles);
complex_doit(qq{find $dirs_escaped -name '*.java' -and -type f -print0 | xargs -s 512000 -0 @JAVAC -g -cp ${CLASSPATH_ORIG}:debian/_jh_build.$ext -d debian/_jh_build.$ext @javac_opts $files_escaped});
if ($build_javadoc) {
- complex_doit(qq{find $dirs_escaped -name '*.java' -and -type f -print0 | xargs -s 512000 -0 @JAVADOC @CLASSPATHDOCS -classpath ${CLASSPATH_ORIG}:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet $JH_JAVADOC_OPTS $files_escaped});
+ complex_doit(qq{find $dirs_escaped -name '*.java' -and -type f -print0 | xargs -s 512000 -0 @JAVADOC @CLASSPATHDOCS -classpath ${CLASSPATH_ORIG}:debian/_jh_build.$ext -d debian/_jh_build.javadoc/api -quiet @javadoc_opts $files_escaped});
}
} elsif (@srcfiles) {