DBG: Omit check for local files, when using GDB over ssh. Issue #0021834

git-svn-id: trunk@37125 -
This commit is contained in:
martin 2012-05-01 17:08:32 +00:00
parent 0fbe5d3207
commit 52a8471216

View File

@ -2163,7 +2163,9 @@ begin
// The following commands may call ProcessMessages, and FDebugger can be nil after each
if FDebugger <> nil
if (FDebugger <> nil) and not NewDebuggerClass.RequiresLocalExecutable
then FDebugger.WorkingDir:=NewWorkingDir;
if (FDebugger <> nil) and NewDebuggerClass.RequiresLocalExecutable
then FDebugger.WorkingDir:=CleanAndExpandDirectory(NewWorkingDir);
// set filename after workingdir
if FDebugger <> nil