2009-02-17 11:43 UTC+0800 Luis Krause (lkrausem at shaw dot ca)

* utils/hbmk/hbmk2.prg
    ! Fixed typo on line 1038 (missing . in .OR.)
This commit is contained in:
Luis Krause
2009-02-17 19:45:39 +00:00
parent e4ac2fb30a
commit f97d0b096c
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-02-17 11:43 UTC+0800 Luis Krause (lkrausem at shaw dot ca)
* utils/hbmk/hbmk2.prg
! Fixed typo on line 1038 (missing . in .OR.)
2009-02-17 20:06 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk/hbmk2.prg
! Fixed -run on *nix systems.

View File

@@ -1035,7 +1035,7 @@ FUNCTION Main( ... )
IF nErrorLevel != 0
PauseForKey()
ELSEIF s_lRUN
#if !( defined( __PLATFORM__WINDOWS ) .OR. defined( __PLATFORM__DOS ) .OR defined( __PLATFORM__OS2 ) )
#if !( defined( __PLATFORM__WINDOWS ) .OR. defined( __PLATFORM__DOS ) .OR. defined( __PLATFORM__OS2 ) )
IF ! Empty( FN_DirGet( s_cPROGNAME ) )
s_cPROGNAME := "." + hb_osPathSeparator() + s_cPROGNAME
ENDIF