Re: [Pydev-code] patch for .classpath file
Brought to you by:
fabioz
From: Fabio Z. <fa...@in...> - 2005-07-15 11:57:03
|
just applied it Karol Pietrzak (RIT Student) wrote: > Hey everyone. > > Attached is a patch which changes a single line of the .classpath > file. It allows Eclipse users to improve the project from CVS and > compile it without having to fix the broken link to > /org.python.pydev.core/lib/junit.jar. Instead, since Eclipse comes > with JUnit, it simply uses the one from Eclipse. > >------------------------------------------------------------------------ > >Index: .classpath >=================================================================== >RCS file: /cvsroot/pydev/org.python.pydev/.classpath,v >retrieving revision 1.12 >diff -u -r1.12 .classpath >--- .classpath 24 Jun 2005 16:09:53 -0000 1.12 >+++ .classpath 14 Jul 2005 19:22:48 -0000 >@@ -4,6 +4,6 @@ > <classpathentry kind="src" path="tests"/> > <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> > <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> >- <classpathentry kind="lib" path="/org.python.pydev.core/lib/junit.jar"/> >+ <classpathentry kind="var" path="JUNIT_HOME/junit.jar"/> > <classpathentry kind="output" path="bin"/> > </classpath> > |