2013-03-16 18:11 UTC+0100 Viktor Szakats (harbour syenar.net)

* config/global.mk
    * minor

  * utils/hbmk2/hbmk2.prg
    * experimenting with formatting the revision number
      to more readable format
This commit is contained in:
vszakats
2013-03-16 18:12:27 +01:00
parent 80ff78d719
commit cfd8f7db38
3 changed files with 11 additions and 3 deletions

View File

@@ -10,6 +10,14 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-03-16 18:11 UTC+0100 Viktor Szakats (harbour syenar.net)
* config/global.mk
* minor
* utils/hbmk2/hbmk2.prg
* experimenting with formatting the revision number
to more readable format
2013-03-16 17:38 UTC+0100 Viktor Szakats (harbour syenar.net)
* bin/commit.hb
* contrib/hbblat/tests/test.prg

View File

@@ -1742,7 +1742,7 @@ ifeq ($(HB_INIT_DONE),)
$(info ! === WARNING: Locally modified source code ===)
endif
_tmp := $(shell git rev-parse --short HEAD)
$(info ! GIT-REVISION: $(_tmp))
$(info ! GIT_REVISION: $(_tmp))
endif
endif
endif

View File

@@ -15585,12 +15585,12 @@ STATIC PROCEDURE ShowHeader( hbmk )
RETURN
STATIC FUNCTION HBRawVersion()
RETURN hb_StrFormat( "%d.%d.%d%s (r%d)", ;
RETURN hb_StrFormat( "%d.%d.%d%s (r20%s)", ;
hb_Version( HB_VERSION_MAJOR ), ;
hb_Version( HB_VERSION_MINOR ), ;
hb_Version( HB_VERSION_RELEASE ), ;
hb_Version( HB_VERSION_STATUS ), ;
hb_Version( HB_VERSION_REVISION ) )
Transform( hb_Version( HB_VERSION_REVISION ), "99-99-99 99:99" ) )
STATIC FUNCTION ExitCodeStr( nResult )