mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-03 02:38:16 +02:00
jcf2: fix double path delim error in jcf settings file path (issue #0018395)
git-svn-id: trunk@28905 -
This commit is contained in:
parent
161912cc0f
commit
8f25e2ae77
@ -88,7 +88,7 @@ var
|
||||
R: TLResource;
|
||||
S: TFileStream;
|
||||
begin
|
||||
JCFOptsFile := SetDirSeparators(LazarusIDE.GetPrimaryConfigPath + '/' + DefaultJCFOptsFile);
|
||||
JCFOptsFile := AppendPathDelim(LazarusIDE.GetPrimaryConfigPath) + DefaultJCFOptsFile;
|
||||
LazarusIDE.CopySecondaryConfigFile(DefaultJCFOptsFile);
|
||||
if not FileExistsUTF8(JCFOptsFile) then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user