Hi Pritpal,

May be related or not, but this code is still wrongly .exe-specific:
(I've once posted a corrected version)
---
      IF empty( cExe )
         cTkn := "hbmk2: Linking... "
         IF ( n := at( cTkn, cTmp ) ) > 0
            cT   := ".exe" // Chr( 13 )
            n1   := hb_at( cT, cTmp, n + len( cTkn ) )
            cExe := substr( cTmp, n + len( cTkn ), n1 - n - len( cTkn
) + len( cT ) )
hbide_dbg( 1, cTkn, cExe )
         ENDIF
      ENDIF
      IF empty( cExe )
         cTkn := "hbmk2: Target up to date: "
         IF ( n := at( cTkn, cTmp ) ) > 0
            cT   := ".exe" // Chr( 13 )
            n1   := hb_at( cT, cTmp, n + len( cTkn ) )
            cExe := substr( cTmp, n + len( cTkn ), n1 - n - len( cTkn
) + len( cT ) )
hbide_dbg( 2, cTkn, cExe )
         ENDIF
      ENDIF
---

Brgds,
Viktor

On Wed, Apr 7, 2010 at 6:47 PM,  <[email protected]> wrote:
> Revision: 14286
>          
> http://harbour-project.svn.sourceforge.net/harbour-project/?rev=14286&view=rev
> Author:   vouchcac
> Date:     2010-04-07 16:47:47 +0000 (Wed, 07 Apr 2010)
>
> Log Message:
> -----------
> 2010-04-07 09:44 UTC-0800 Pritpal Bedi ([email protected])
>  * contrib/hbide/ideprojmanager.prg
>    ! Added some more debug code for *nix users to understand
>      how some files are managed.
>
> Modified Paths:
> --------------
>    trunk/harbour/ChangeLog
>    trunk/harbour/contrib/hbide/ideprojmanager.prg
>
> Modified: trunk/harbour/ChangeLog
> ===================================================================
> --- trunk/harbour/ChangeLog     2010-04-07 15:15:41 UTC (rev 14285)
> +++ trunk/harbour/ChangeLog     2010-04-07 16:47:47 UTC (rev 14286)
> @@ -17,6 +17,11 @@
>    past entries belonging to author(s): Viktor Szakats.
>  */
>
> +2010-04-07 09:44 UTC-0800 Pritpal Bedi ([email protected])
> +  * contrib/hbide/ideprojmanager.prg
> +    ! Added some more debug code for *nix users to understand
> +      how some files are managed.
> +
>  2010-04-07 17:14 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
>   * ChangeLog
>     ! Fixed my latest ChangeLog entry. (missed Maurilio as
>
> Modified: trunk/harbour/contrib/hbide/ideprojmanager.prg
> ===================================================================
> --- trunk/harbour/contrib/hbide/ideprojmanager.prg      2010-04-07 15:15:41 
> UTC (rev 14285)
> +++ trunk/harbour/contrib/hbide/ideprojmanager.prg      2010-04-07 16:47:47 
> UTC (rev 14286)
> @@ -5,7 +5,7 @@
>  /*
>  * Harbour Project source code:
>  *
> - * Copyright 2009-2010 Pritpal Bedi <[email protected]>
> + * Copyright 2009-2010 Pritpal Bedi <[email protected]>
>  * www - http://www.harbour-project.org
>  *
>  * This program is free software; you can redistribute it and/or modify
> @@ -1246,7 +1246,10 @@
>       cC   := iif( hbide_getOS() == "nix", "", "/C " )
>       cArg := iif( empty( ::cBatch ), cC, cC + ::cBatch + " && "  )
>       //
> -hbide_dbg( cArg + cExeHbMk2 + " " + cHbpPath + cCmdParams )
> +      ::oOutputResult:oWidget:append( ::cBatch + iif( hb_fileExists( 
> ::cBatch ), " : Exists", " : Do Not Exists" ) )
> +      ::oOutputResult:oWidget:append( cArg + cExeHbMk2 + " " + cHbpPath + 
> cCmdParams  )
> +      ::oOutputResult:oWidget:append( hbide_outputLine() )
> +      //
>       ::oProcess:addArg( cArg + cExeHbMk2 + " " + cHbpPath + cCmdParams )
>       ::oProcess:start( cCmd )
>    ENDIF
>
>
> This was sent by the SourceForge.net collaborative development platform, the 
> world's largest Open Source development site.
>
_______________________________________________
Harbour mailing list (attachment size limit: 40KB)
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to