--- a/buildframework/helium/builder/template/easy-install.pth.ftl Mon Sep 06 09:57:24 2010 +0100
+++ b/buildframework/helium/builder/template/easy-install.pth.ftl Mon Sep 13 13:11:19 2010 +0800
@@ -20,7 +20,8 @@
============================================================================
-->
import sys; sys.__plen = len(sys.path)
-<#list project.getReference('egg.deps.fileset').toString().split(';') as file>
-./${file}
+<#list project.getReference('egg.deps.fileset').toString()?split(ant['path.separator']) as file>
+<#assign path = file?split("[\\\\/]", 'r')>
+./${path[path?size-2]}/${path?last}
</#list>
import sys; new=sys.path[sys.__plen:]; del sys.path[sys.__plen:]; p=getattr(sys,'__egginsert',0); sys.path[p:p]=new; sys.__egginsert = p+len(new)