*theide: fixed makefile export bug omitting some libraries

git-svn-id: svn://ultimatepp.org/upp/trunk@2830 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
dolik 2010-11-01 23:38:51 +00:00
parent 5c053a9c3e
commit 23117fa56f

View file

@ -492,7 +492,7 @@ Vector<String> MakeBuild::GetAllLibraries(const Workspace& wspc, int index,
uses.Add(wspc[index]);
Index<String> libraries;
for(int i = 0; i < uses.GetCount(); i++) {
int f = wspc.package.Find(uses[i]);
int f = wspc.package.Find(UnixPath(uses[i]));
if(f >= 0) {
const Package& pk = wspc.package[f];
Index<String> config = PackageConfig(wspc, f, bm, mainparam, host, builder);