2012-03-12 12:18 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)

* contrib/hbide/ideuisrcmanager.prg
    - Deleted: hack "HB_QTPATH" embedding in batch file.
       I was wrong in my assertion that fired process does not take
       over current process's enviroment.
This commit is contained in:
Pritpal Bedi
2012-03-12 19:22:14 +00:00
parent 765fe1f6ee
commit 8df18a7606
2 changed files with 9 additions and 5 deletions

View File

@@ -16,7 +16,13 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-03-12 20:24 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
2012-03-12 12:18 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/ideuisrcmanager.prg
- Deleted: hack "HB_QTPATH" embedding in batch file.
I was wrong in my assertion that fired process does not take
over current process's enviroment.
2012-03-12 08:24 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/idemisc.prg
* contrib/hbide/ideuisrcmanager.prg
! Changed: hb_osNewLine() => hb_eol()

View File

@@ -680,10 +680,8 @@ METHOD IdeUISrcManager:runHbmk2( cUI )
IF hb_fileExists( cBatch )
cBuf := memoread( cBatch )
IF ! empty( hb_getEnv( "HB_QTPATH" ) )
cBuf := "SET HB_QTPATH=" + hb_getEnv( "HB_QTPATH" ) + hb_eol() + cBuf
ENDIF
cBuf += hb_eol() + cExeHbMk2 + " " + cHbpFileName + " " + cCmdParams + hb_osNewLine()
cBuf += "SET " + hb_eol()
cBuf += hb_eol() + cExeHbMk2 + " " + cHbpFileName + " " + cCmdParams + hb_eol()
hb_memowrit( cBatch, cBuf )
ENDIF
//