diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d5c36d242b..e1fd307864 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,17 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-08-23 10:15 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * utils/hbmk2/hbmk2.prg + ! Minor visual correction to help screen option section. + + * ChangeLog + ! Missed from prev entry: + * utils/hbmk2/hbmk2.prg + + Added quiet option for watcom linker commands. + ! Fixed missing SYS directive in watcom/win targets which prevented + using this target in cross-build scenarios. + 2009-08-23 09:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.pt_BR.po * utils/hbmk2/hbmk2.hu_HU.po @@ -30,6 +41,9 @@ work due to 'invalid library file attribute'. Either the GNU Make generate .so is wrong, or it's wrongly specified, or else. I hope something can continue watcom dynamic lib support. + + Added quiet option for watcom linker commands. + ! Fixed missing SYS directive in watcom/win targets which prevented + using this target in cross-build scenarios. * config/dos/watcom.mk * Formatting. diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 1d4c195b70..a8b1ce9613 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -6804,9 +6804,9 @@ STATIC PROCEDURE OutOpt( hbmk, aOpt ) OutStd( hb_osNewLine() ) ELSE aOpt[ 2 ] := StrTran( aOpt[ 2 ], "\n", hb_osNewLine() ) - nLines := MLCount( aOpt[ 2 ], MaxCol() - 21 ) + nLines := MLCount( aOpt[ 2 ], MaxCol() - 19 ) FOR nLine := 1 TO nLines - IF ! Empty( tmp := MemoLine( aOpt[ 2 ], MaxCol() - 21, nLine ) ) + IF ! Empty( tmp := MemoLine( aOpt[ 2 ], MaxCol() - 19, nLine ) ) OutStd( " " ) IF nLine == 1 OutStd( PadR( aOpt[ 1 ], 19 ) )