2009-04-07 16:55 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* utils/hbmk2/hbmk2.prg
    ! Regression fixed after latest poccarm support additions.
This commit is contained in:
Viktor Szakats
2009-04-07 15:04:30 +00:00
parent 27c3e16843
commit 7aae130f29
2 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,10 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-04-07 16:55 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
! Regression fixed after latest poccarm support additions.
2009-04-07 16:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* bin/postinst.bat
! Fixed shared executable creation for cross-builds.

View File

@@ -1922,7 +1922,7 @@ PROCEDURE Main( ... )
AAdd( s_aOPTC, "/Tx86-coff" )
CASE t_cCOMP == "pocc64"
AAdd( s_aOPTC, "/Tamd64-coff" )
CASE t_cCOMP $ "poccce|poccarm"
CASE t_cCOMP == "poccce" .OR. t_cCOMP == "poccarm"
AAdd( s_aOPTC, "/Tarm-coff" )
ENDCASE
cOpt_Res := "{LR}"
@@ -1960,7 +1960,7 @@ PROCEDURE Main( ... )
CASE t_cCOMP == "pocc64"
s_aLIBSHARED := { iif( s_lMT, "harbourmt-" + cDL_Version_Alter + "-x64" + cLibExt,;
"harbour-" + cDL_Version_Alter + "-x64" + cLibExt ) }
CASE t_cCOMP $ "poccce|poccarm"
CASE t_cCOMP == "poccce" .OR. t_cCOMP == "poccarm"
s_aLIBSHARED := { iif( s_lMT, "harbourmt-" + cDL_Version_Alter + "-arm" + cLibExt,;
"harbour-" + cDL_Version_Alter + "-arm" + cLibExt ) }
OTHERWISE