Salome HOME
Update Release Notes for v7.5.1
[tools/install.git] / runInstall
index 8616318081828ce08e7a3d63546e18319f686afb..6ff7677127790b61c647e3f0cbcb78238ddd5d14 100755 (executable)
@@ -6,7 +6,7 @@ Installation Wizard launching script.
 This script is the part of the SALOME installation procedure.
 Author    : Vadim SANDLER, Open CASCADE SAS (vadim.sandler@opencascade.com)
 Created   : Thu Dec 18 12:01:00 2002
-Copyright : 2002-2014 CEA
+Copyright : 2002-2015 CEA
 
 """
 
@@ -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