hsqldb/0001-Fix-javadoc-build.patch
2020-06-08 12:51:33 +03:00

33 lines
1.1 KiB
Diff

From 8d452f0a40d7f2d244bba0fff238d2be788e093f Mon Sep 17 00:00:00 2001
From: Michael Simacek <msimacek@redhat.com>
Date: Thu, 30 Nov 2017 19:49:42 +0200
Subject: [PATCH 1/2] Fix javadoc build
---
build/build.xml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/build/build.xml b/build/build.xml
index a370a20..054db25 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -133,6 +133,7 @@ examples:
There is no performance penalty, since the javadoc task regenerates
everything each run.
-->
+ <mkdir dir="doc/apidocs"/>
<copy todir="doc/apidocs">
<!-- IMPORTANT:
Add a fixcrlf if we add non-binary files to doc-src/apidocs. -->
@@ -936,7 +937,7 @@ examples:
src/org/hsqldb/auth/LdapAuthBean.java,
src/org/hsqldb/auth/LdapAuthBeanTester.java"
destdir="doc/apidocs"
- stylesheetfile="doc-src/apidocs/javadoc.css"
+ additionalparam="-Xdoclint:none"
docencoding="UTF-8"
charset="UTF-8"
author="true"
--
2.14.3