2010-04-08 13:37 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)

* contrib/hbide/idemisc.prg
    ! Fixed wrong concataion of path and file when path was empty.
      This fixes ( partially ) the built .exe detection in hbIDE.
This commit is contained in:
Pritpal Bedi
2010-04-08 20:34:46 +00:00
parent 86a38625eb
commit b721eddaae
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-04-08 13:37 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbide/idemisc.prg
! Fixed wrong concataion of path and file when path was empty.
This fixes ( partially ) the built .exe detection in hbIDE.
2010-04-08 21:23 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
! Fixed not propely working filters in some options + situations.

View File

@@ -657,7 +657,7 @@ FUNCTION hbide_pathNormalized( cPath, lLower )
FUNCTION hbide_pathFile( cPath, cFile )
cPath := iif( right( cPath, 1 ) $ "\/", substr( cPath, 1, len( cPath ) - 1 ), cPath )
RETURN hbide_pathToOSPath( cPath + "\" + cFile )
RETURN hbide_pathToOSPath( iif( empty( cPath ), cFile, cPath + "\" + cFile ) )
/*----------------------------------------------------------------------*/