tools: updatemakefiles: fixed calling it from inside tools

git-svn-id: trunk@49905 -
This commit is contained in:
mattias 2015-10-01 18:24:18 +00:00
parent bd72ae95df
commit 8758f952f7

View File

@ -156,7 +156,7 @@ begin
writeln(LPKFiles.Text);
LPKFiles.StrictDelimiter:=true;
LPKFiles.Delimiter:=' ';
LazbuildOut:=RunTool(SetDirSeparators('./lazbuild'+ExeExt),'--lazarusdir="'+LazarusDir+'" --create-makefile '+LPKFiles.DelimitedText,LazarusDir);
LazbuildOut:=RunTool(SetDirSeparators(LazarusDir+'/lazbuild'+ExeExt),'--lazarusdir="'+LazarusDir+'" --create-makefile '+LPKFiles.DelimitedText,LazarusDir);
writeln(LazbuildOut.Text);
LPKFiles.Free;
end.