Author: M0...@gm...
Date: Thu Jul 31 14:54:15 2008
New Revision: 94
Modified:
branches/iVL/MdlInstallCustom.module
Log:
Small fix to the CONF package installer (bad text split line)
Modified: branches/iVL/MdlInstallCustom.module
==============================================================================
--- branches/iVL/MdlInstallCustom.module (original)
+++ branches/iVL/MdlInstallCustom.module Thu Jul 31 14:54:15 2008
@@ -175,7 +175,7 @@
NEXT
ELSE ' single CONF line
sPkg = Right(sOutput, Len(sOutput) - InStr(sOutput, "\'"))
- sPkg = Left(sPkg, Len(sPkg) - RInStr(sPkg, "\'"))
+ sPkg = Left(sPkg, RInStr(sPkg, "\'") - 1)
sLinearr = Split(sPkg, ":")
sPkgPath = ClsGlobal.sSourceMnt &/ "veclinux" &/ sLinearr[0]
iret = ME.INSTALL_THIS_PACKAGE(sPkgPath)
|