From e6a407ceedb7038d3fdacf7e6e878903c7623eff Mon Sep 17 00:00:00 2001 From: mattias Date: Tue, 9 Oct 2012 08:45:34 +0000 Subject: [PATCH] updatemakefiles: fixed passing lazarusdir to lazbuild git-svn-id: trunk@39021 - --- tools/updatemakefiles.lpr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/updatemakefiles.lpr b/tools/updatemakefiles.lpr index 4ccd346d1b..135c7a2597 100644 --- a/tools/updatemakefiles.lpr +++ b/tools/updatemakefiles.lpr @@ -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.