2008-09-14 22:46 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* utils/hbmake/hbmake.prg
    ! Fixed two typos in last commit. Thanks to Bill Robertson.
This commit is contained in:
Viktor Szakats
2008-09-14 20:46:26 +00:00
parent 8e7057547b
commit 76bb0f05be
2 changed files with 6 additions and 4 deletions

View File

@@ -8,6 +8,10 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-09-14 22:46 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmake/hbmake.prg
! Fixed two typos in last commit. Thanks to Bill Robertson.
2008-09-14 22:36 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/common/hbverdsp.c
+ Showing MT status on //BUILD screen.

View File

@@ -74,8 +74,6 @@
#define PGM_ERR -1 // Return value for an abnormal exit
#define PGM_OK 0 // Return value for a normal exit
#define PGM_QUIT 1 // Quit before making file but without error
#define PGM_BAK 2 // ?
#define PGM_BAD 3 // ?
#Define HBM_USE_DEPENDS // Set this to have section #DEPENDS parsed like RMake, Ath 2004-06
// An extra parameter is added to FileIsNewer() to have it check the INCLUDE paths also
@@ -1308,7 +1306,7 @@ FUNCTION CompileFiles()
NEXT
RETURN IIF ( lErrs, PGM_BAK, PGM_OK )
RETURN IIF ( lErrs, PGM_ERR, PGM_OK )
*-------------------------------
FUNCTION GetParaDefines( cTemp )
@@ -3308,7 +3306,7 @@ FUNCTION CompileUpdatedFiles()
s_lErrors := IIF( hb_run( s_cEditor + " " + s_cLogFile ) != 0, .T., .F. )
IF s_lErrors
RETURN PGM_BAD
RETURN PGM_ERR
ENDIF
ENDIF