From afc9bd4ee6a7945ec9864c3cd82fea4800e53a56 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 2 Aug 2010 16:34:48 +0000 Subject: [PATCH] 2010-08-02 18:34 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/postinst.hbs * Synced mk_hb_processRun() with make.hbs. (minor, doesn't change functionality) --- harbour/ChangeLog | 5 +++++ harbour/config/postinst.hbs | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 65fc78da0f..6889043101 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2010-08-02 18:34 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/postinst.hbs + * Synced mk_hb_processRun() with make.hbs. (minor, doesn't change + functionality) + 2010-08-02 18:32 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/hbxbp/hbxbp.hbp ! Missed to update hbqt .hbc file references. diff --git a/harbour/config/postinst.hbs b/harbour/config/postinst.hbs index 0439a52ea4..e02cc4b8fd 100644 --- a/harbour/config/postinst.hbs +++ b/harbour/config/postinst.hbs @@ -358,11 +358,11 @@ STATIC FUNCTION mk_hbd_core( cDir ) RETURN .F. -STATIC FUNCTION mk_hb_processRun( cCommand ) +STATIC FUNCTION mk_hb_processRun( cCommand, ... ) OutStd( cCommand + hb_eol() ) - RETURN hb_processRun( cCommand ) + RETURN hb_processRun( cCommand, ... ) STATIC FUNCTION FNameEscape( cFN ) RETURN Chr( 34 ) + cFN + Chr( 34 )