I had the same problem.
In the file "jde-javadoc.el" you will find the code below, my solution it to comment
out either one of the two. Dont forget to compile after the change.
; ;; Insert classpath
; (if jde-db-source-directories
; (setq arguments
; (concat
; arguments
; (format " -sourcepath \"%s\""
; (mapconcat
; (lambda (path) path)
; jde-db-source-directories
; path-separator)))))
;; Insert sourcepath
(if jde-compile-option-sourcepath
(setq arguments
(concat
arguments " "
(jde-build-path-arg
"-sourcepath "
jde-compile-option-sourcepath
jde-quote-classpath))))
/ Andreas Wieweg
Using JDE 2.2.5
----- Original Message -----
From: "Ventimiglia, David" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, January 24, 2001 7:48 PM
Subject: JavaDoc problem
> When I generate JavaDocs from JDE, it includes the -sourcepath argument
> twice. Anyone know why this might be happening?
>
> I posted this several days ago and didn't get a response, so I'm giving it
> another shot.
>
> Cheers,
> David
>