https://issues.apache.org/bugzilla/show_bug.cgi?id=48804
--- Comment #9 from Robert E. Menteer <[email protected]> 2010-02-26 03:16:41 UTC --- I'm having this same problem and have found a work around. If your build files look like this: <project name="imported"> <extension-point name="extend-this"/> </project> <project name="importing"> <import file="imported"/> <target name="extending" extentionOf="extend-this"/> </project> Ant will complain that extend-this does not exist. By wrapping these build files in another Ant will not complain. The initial build files do not need to be modified so the wrapper files can be deleted when this bug is fixed. <project name="wrapper"> <import file="imported"/> <import file="importing"/> </project> -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
