updatemakefiles: fixed passing lazarusdir to lazbuild

git-svn-id: trunk@39021 -
This commit is contained in:
mattias 2012-10-09 08:45:34 +00:00
parent 7d0972774d
commit e6a407ceed

View File

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