You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2005/07/07 22:54:50 UTC

svn commit: r209645 - /gump/branches/Gump3/pygump/python/gump/model/util.py

Author: leosimons
Date: Thu Jul  7 13:54:49 2005
New Revision: 209645

URL: http://svn.apache.org/viewcvs?rev=209645&view=rev
Log:
Fix naming error in this method

Modified:
    gump/branches/Gump3/pygump/python/gump/model/util.py

Modified: gump/branches/Gump3/pygump/python/gump/model/util.py
URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/pygump/python/gump/model/util.py?rev=209645&r1=209644&r2=209645&view=diff
==============================================================================
--- gump/branches/Gump3/pygump/python/gump/model/util.py (original)
+++ gump/branches/Gump3/pygump/python/gump/model/util.py Thu Jul  7 13:54:49 2005
@@ -227,17 +227,17 @@
                 # only the "runtime" dependencies.
                 if recurse:
                     if info.inherit == DEPENDENCY_INHERIT_ALL or info.inherit == DEPENDENCY_INHERIT_HARD:
-                        (inheritedclasspath, inheritedbootclasspath) = get_classpath(workdir, dependency, recurse=False)
+                        (inheritedclasspath, inheritedbootclasspath) = calculate_classpath(workdir, dependency, recurse=False)
                         classpath.extend(inheritedclasspath)
                         bootclasspath.extend(inheritedbootclasspath)
                     
                     if info.inherit == DEPENDENCY_INHERIT_JARS:
-                        (inheritedclasspath, inheritedbootclasspath) = get_classpath(workdir, dependency, recurse=True)
+                        (inheritedclasspath, inheritedbootclasspath) = calculate_classpath(workdir, dependency, recurse=True)
                         classpath.extend(inheritedclasspath)
                         bootclasspath.extend(inheritedbootclasspath)
                     
                     if info.inherit == DEPENDENCY_INHERIT_RUNTIME:
-                        (inheritedclasspath, inheritedbootclasspath) = get_classpath(workdir, dependency, recurse=False, runtimeonly=True)
+                        (inheritedclasspath, inheritedbootclasspath) = calculate_classpath(workdir, dependency, recurse=False, runtimeonly=True)
                         classpath.extend(inheritedclasspath)
                         bootclasspath.extend(inheritedbootclasspath)