From 6d4353682ef7c980e342beaa54155639edcc975f Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 10 Jul 2006 22:13:00 +0000
Subject: [PATCH] Update build.xml to fix an incorrect dependency for the javadoc build target (it had a dependency on "package" when it should have been on "dsml").

---
 opendj-sdk/opends/build.xml |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/opendj-sdk/opends/build.xml b/opendj-sdk/opends/build.xml
index 35ddf80..1960fa0 100644
--- a/opendj-sdk/opends/build.xml
+++ b/opendj-sdk/opends/build.xml
@@ -544,7 +544,7 @@
 
 
   <!-- Generate JavaDoc documentation from the source files -->
-  <target name="javadoc" depends="package"
+  <target name="javadoc" depends="dsml"
        description="Generate JavaDoc documentation.">
 
     <mkdir dir="${javadoc.dir}" />

--
Gitblit v1.10.0