1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Date: Sat, 11 Aug 2012 21:49:38 +0200
Subject: Fedora-eclipse-emf-symlinked-classpath
---
doc/org.eclipse.emf.doc/build/antJavadoc.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/org.eclipse.emf.doc/build/antJavadoc.sh b/doc/org.eclipse.emf.doc/build/antJavadoc.sh
index ba974d5..ee8cf34 100644
--- a/doc/org.eclipse.emf.doc/build/antJavadoc.sh
+++ b/doc/org.eclipse.emf.doc/build/antJavadoc.sh
@@ -100,7 +100,7 @@ pluginDirs=`find -L $eclipseDir/plugins -name @dot -printf '%T@ %p\n' | sort -n
### so that all classes/packages (and thus @links) can be resolved
# All the jars in the plugins directory
-classpath=`find -L $eclipseDir/plugins \( -name "*.jar" -type f \) -o \( -name '@dot' -type d \) | tr '\n' ':'`;
+classpath=`find -L $eclipseDir/plugins $eclipseDir/SDK/plugins \( -name "*.jar" -type f \) -o \( -name '@dot' -type d \) | tr '\n' ':'`;
if [[ $debug -gt 1 ]]; then echo "Got classpath: "; echo $classpath | perl -pe "s#:#\n\t:#g"; fi
# Calculates the packagesets and the calls to copyDocFiles (used in ${antScript}.template)
|