2009-06-04 13:26 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* utils/hbmk2/hbmk2.prg
    + Added support for macros (including envvars) for .hbc references.
      F.e.: hbmk2 [...] ${MYLIB_DIR}/mylib.hbc [...]
This commit is contained in:
Viktor Szakats
2009-06-04 11:26:26 +00:00
parent 9ad6d6e547
commit f7012a0401
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to these authors: Viktor Szakats.
*/
2009-06-04 13:26 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
+ Added support for macros (including envvars) for .hbc references.
F.e.: hbmk2 [...] ${MYLIB_DIR}/mylib.hbc [...]
2009-06-04 09:23 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* source/compiler/hbusage.c
+ Added contributors present on the crew list only.

View File

@@ -1625,7 +1625,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause, /* @ */ lUTF8 )
CASE FN_ExtGet( cParamL ) == ".hbc"
cParam := PathProc( cParam, aParam[ _PAR_cFileName ] )
cParam := PathProc( MacroProc( hbmk, ArchCompFilter( hbmk, cParam ), FN_DirGet( aParam[ _PAR_cFileName ] ) ), aParam[ _PAR_cFileName ] )
IF ! hb_FileExists( cParam )
FOR EACH tmp IN hbmk[ _HBMK_aLIBPATH ]