]> SALOME platform Git repositories - tools/install.git/commitdiff
Salome HOME
Fix problem with collecting dependencies in batch mode on some platforms: text data...
authorvsr <vsr@opencascade.com>
Thu, 27 Nov 2014 07:58:35 +0000 (10:58 +0300)
committervsr <vsr@opencascade.com>
Thu, 27 Nov 2014 07:58:35 +0000 (10:58 +0300)
runInstall

index 8616318081828ce08e7a3d63546e18319f686afb..3320a64062d9fe84d3f2ba1d189f8bb856ab7d6e 100755 (executable)
@@ -474,7 +474,12 @@ class ConfigParser:
             if not prodName: continue
             depsList = []
             for depElem in prodElem.getElementsByTagName('dep'):
-                depsList.append(depElem.firstChild.data)
+                txt = ""
+                n = depElem.firstChild
+                while n:
+                    txt += n.data
+                    n = n.nextSibling
+                depsList.append(txt.strip())
                 pass
             depsMap[prodName] = depsList
             pass