diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f7fb68488d..f5b5b31685 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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. diff --git a/harbour/utils/hbmake/hbmake.prg b/harbour/utils/hbmake/hbmake.prg index 399d2f7540..30d2395355 100644 --- a/harbour/utils/hbmake/hbmake.prg +++ b/harbour/utils/hbmake/hbmake.prg @@ -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