From 39a1464cc8c79d063fccc4d7dd7bd7223eb0bb05 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 12 Jul 2010 19:39:05 +0000 Subject: [PATCH] 2010-07-12 21:38 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.prg ! Fixed to not generate implibs in --hbinfo mode. * contrib/make.hbs % Minor. --- harbour/ChangeLog | 7 +++++++ harbour/contrib/make.hbs | 2 +- harbour/utils/hbmk2/hbmk2.prg | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6ec3ed3160..63d06add3c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,13 @@ The license applies to all entries newer than 2009-04-28. */ +2010-07-12 21:38 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * utils/hbmk2/hbmk2.prg + ! Fixed to not generate implibs in --hbinfo mode. + + * contrib/make.hbs + % Minor. + 2010-07-12 20:39 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.prg ! Fixed to honor -stop option in -hbimplib mode. diff --git a/harbour/contrib/make.hbs b/harbour/contrib/make.hbs index 4df6a0c4d8..702fa500b3 100755 --- a/harbour/contrib/make.hbs +++ b/harbour/contrib/make.hbs @@ -104,7 +104,7 @@ PROCEDURE StandAlone( ... ) AAdd( aLibs, aFile[ F_NAME ] ) NEXT - IF Empty( Len( aLibs ) ) + IF Empty( aLibs ) RETURN ENDIF diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 8e1a7e1a89..1e8d6977f0 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -3965,7 +3965,7 @@ FUNCTION hbmk2( aArgs, /* @ */ lPause ) /* ; */ - IF ! lStopAfterInit .AND. hbmk[ _HBMK_lCreateImpLib ] + IF ! lStopAfterInit .AND. hbmk[ _HBMK_lCreateImpLib ] .AND. ! lDumpInfo DoIMPLIB( hbmk, bBlk_ImpLib, cLibLibPrefix, cLibLibExt ) lStopAfterInit := .T. ENDIF