You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2011/10/27 16:48:36 UTC

svn commit: r1189791 - /incubator/jena/Jena2/TDB/trunk/bin/make_classpath_mvn

Author: andy
Date: Thu Oct 27 14:48:36 2011
New Revision: 1189791

URL: http://svn.apache.org/viewvc?rev=1189791&view=rev
Log:
Look for possible sources of development files.

Modified:
    incubator/jena/Jena2/TDB/trunk/bin/make_classpath_mvn

Modified: incubator/jena/Jena2/TDB/trunk/bin/make_classpath_mvn
URL: http://svn.apache.org/viewvc/incubator/jena/Jena2/TDB/trunk/bin/make_classpath_mvn?rev=1189791&r1=1189790&r2=1189791&view=diff
==============================================================================
--- incubator/jena/Jena2/TDB/trunk/bin/make_classpath_mvn (original)
+++ incubator/jena/Jena2/TDB/trunk/bin/make_classpath_mvn Thu Oct 27 14:48:36 2011
@@ -17,6 +17,8 @@ do
    CP="$CP:$M2_REPO$x"
 done
 
-CP="$DIRROOT/target/classes$CP"
+[ -e "classes" ] && CP="$DIRROOT/classes$CP"
+[ -e "target/classes" ] && CP="$DIRROOT/target/classes$CP"
+
 echo "$CP"