diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 89a6ddaed4..3064a3b634 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-10-30 21:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * utils/hbmk2/hbmk2.prg + * Fixed name usage in a few places ('hbmk' -> 'hbmk2'). + 2009-10-30 21:50 UTC+0200 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt) * harbour/contrib/rddads/ads1.c * added ADS function return value check in a few places diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 73ce4a8d9a..011cebaae1 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -3302,7 +3302,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause ) IF ! Empty( l_cVCSHEAD ) tmp1 := VCSID( l_cVCSDIR, l_cVCSHEAD, @tmp2 ) /* Use the same EOL for all platforms to avoid unnecessary rebuilds. */ - tmp := "/* Automatically generated by hbmk. Do not edit. */" + Chr( 10 ) +; + tmp := "/* Automatically generated by hbmk2. Do not edit. */" + Chr( 10 ) +; "#define _HBMK_VCS_TYPE_ " + '"' + tmp2 + '"' + Chr( 10 ) +; "#define _HBMK_VCS_ID_ " + '"' + tmp1 + '"' + Chr( 10 ) /* Update only if something changed to trigger rebuild only if really needed */ @@ -3316,7 +3316,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause ) IF ! Empty( l_cTSHEAD ) /* Use the same EOL for all platforms to avoid unnecessary rebuilds. */ tmp1 := hb_DateTime() - tmp := "/* Automatically generated by hbmk. Do not edit. */" + Chr( 10 ) +; + tmp := "/* Automatically generated by hbmk2. Do not edit. */" + Chr( 10 ) +; "#define _HBMK_BUILD_DATE_ " + '"' + DToS( tmp1 ) + '"' + Chr( 10 ) +; "#define _HBMK_BUILD_TIME_ " + '"' + SubStr( hb_TToS( tmp1 ), 9, 6 ) + '"' + Chr( 10 ) +; "#define _HBMK_BUILD_TIMESTAMP_ " + '"' + hb_TToS( tmp1 ) + '"' + Chr( 10 )