2009-04-22 11:38 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* utils/hbmk2/hbmk2.prg
    ! Fixed regression in handling .c stub after recent changes.
    ! Fixed potential problem with inctrypath in some situations.
This commit is contained in:
Viktor Szakats
2009-04-22 09:38:50 +00:00
parent 465792092d
commit 5ef7291b95
2 changed files with 8 additions and 2 deletions

View File

@@ -8,6 +8,11 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-04-22 11:38 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
! Fixed regression in handling .c stub after recent changes.
! Fixed potential problem with inctrypath in some situations.
2009-04-22 10:06 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
+ Added .hbl file to possible input file list.

View File

@@ -2330,13 +2330,13 @@ FUNCTION hbmk( aArgs )
ENDIF
NEXT
ELSE
s_aC_TODO := s_aC
s_aC_TODO := AClone( s_aC )
s_aC_DONE := {}
ENDIF
/* Header dir detection if needed and if FindNewerHeaders() wasn't called yet. */
IF ! Empty( s_aINCTRYPATH ) .AND. ! Empty( s_aC_TODO ) .AND. headstate == NIL
FOR EACH tmp IN s_aC
FOR EACH tmp IN s_aC_TODO
FindNewerHeaders( tmp, NIL, NIL, .T., .T., @headstate )
NEXT
ENDIF
@@ -2532,6 +2532,7 @@ FUNCTION hbmk( aArgs )
RETURN 5
ENDIF
AAdd( s_aC, s_cCSTUB )
AAdd( s_aC_TODO, s_cCSTUB )
ENDIF
/* Library list assembly */