You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by ma...@apache.org on 2007/04/04 21:32:27 UTC

svn commit: r525614 - /incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyInfo.java

Author: maartenc
Date: Wed Apr  4 14:32:26 2007
New Revision: 525614

URL: http://svn.apache.org/viewvc?view=rev&rev=525614
Log:
Same problem as IVY-396.

Modified:
    incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyInfo.java

Modified: incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyInfo.java
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyInfo.java?view=diff&rev=525614&r1=525613&r2=525614
==============================================================================
--- incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyInfo.java (original)
+++ incubator/ivy/core/trunk/src/java/org/apache/ivy/ant/IvyInfo.java Wed Apr  4 14:32:26 2007
@@ -53,7 +53,7 @@
         Ivy ivy = getIvyInstance();
         IvySettings settings = ivy.getSettings();
         if (_file == null) {
-            _file = new File(getProject().getBaseDir(), getProperty(settings, "ivy.dep.file"));
+            _file = getProject().resolveFile(getProperty(settings, "ivy.dep.file"));
         }
         
         try {