From 12e3cbe84daa5066a4b28a09bd80d38948ec8b1d 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").

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

diff --git a/opends/build.xml b/opends/build.xml
index 35ddf80..1960fa0 100644
--- a/opends/build.xml
+++ b/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