[DEVELOPMENT ENVIRONMENT]
* BUG: Fix the routine that checks for program availability. git-svn-id: svn://localhost/gambas/trunk@6480 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
db2cb04d55
commit
5b6e0d2b82
2 changed files with 345 additions and 168 deletions
File diff suppressed because it is too large
Load diff
|
@ -5140,7 +5140,7 @@ Public Function CheckProgram(sProg As String) As Boolean
|
|||
|
||||
iPos = InStr(sProg, " ")
|
||||
If iPos Then sProg = Left(sProg, iPos - 1)
|
||||
Return system.Exist(sProg)
|
||||
Return Not System.Exist(sProg)
|
||||
|
||||
End
|
||||
|
||||
|
|
Loading…
Reference in a new issue