2009-06-15 16:32 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* utils/hbmk2/hbmk2.prg
    ! Fixed extension-less parameters not recognized as .prg
      on dos platform.
      (they were picked as libs due to extension match with 
      empty dynamic lib extension)
      Thanks to Przemek for the report.
This commit is contained in:
Viktor Szakats
2009-06-15 14:33:30 +00:00
parent 662b1d25d0
commit 685f3c6511
2 changed files with 9 additions and 1 deletions

View File

@@ -17,6 +17,14 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-15 16:32 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
! Fixed extension-less parameters not recognized as .prg
on dos platform.
(they were picked as libs due to extension match with
empty dynamic lib extension)
Thanks to Przemek for the report.
2009-06-15 15:45 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbwin/legacy.prg
+ Added legacy CREATEOLEOBJECT() call support.

View File

@@ -1679,7 +1679,7 @@ FUNCTION hbmk( aArgs, /* @ */ lPause, /* @ */ lUTF8 )
ENDCASE
CASE FN_ExtGet( cParamL ) == ".lib" .OR. ;
FN_ExtGet( cParamL ) == cDynLibExt
( ! Empty( cDynLibExt ) .AND. FN_ExtGet( cParamL ) == cDynLibExt )
cParam := ArchCompFilter( hbmk, cParam )
IF ! Empty( cParam )