On Tue, 17 Jul 2001, <[EMAIL PROTECTED]> wrote: > If "ant -find build.xml" is used and build.xml is in the current > dir, the returned file will be "/foo/bar/./build.xml", and that > might brake a number of <property location="..." /> and other > relative paths.
What you see is a symptom of removing the getCanonicalPath invocations everywhere - getCanonicalPath would strip out the /. while getAbsolutePath doesn't. I think we need a different fix (in Project.resolveFile) to account for that completely. Stefan
