From: caremoli Date: Mon, 6 Dec 2010 16:59:21 +0000 (+0000) Subject: CCAR: improve the modification of ASTER config.txt when profile.sh path is absolute X-Git-Tag: V5_1_4p2~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=73ca12a1b9f0843efd5a22e024104dd3882c314a;p=tools%2Fyacsgen.git CCAR: improve the modification of ASTER config.txt when profile.sh path is absolute --- diff --git a/module_generator/astcompo.py b/module_generator/astcompo.py index f124fbb..1df053d 100644 --- a/module_generator/astcompo.py +++ b/module_generator/astcompo.py @@ -147,7 +147,7 @@ class ASTERComponent(Component): fil = open(os.path.join(self.aster_dir, "config.txt")) config = fil.read() fil.close() - config = re.sub("profile.sh", os.path.join(self.aster_dir, "profile.sh"), config) + config = re.sub(" profile.sh", os.path.join(self.aster_dir, "profile.sh"), config) path=os.path.join(os.path.abspath(gen.module.prefix),'lib', 'python%s.%s' % (sys.version_info[0], sys.version_info[1]), @@ -182,7 +182,7 @@ class ASTERComponent(Component): fil = open(os.path.join(self.aster_dir, "config.txt")) config = fil.read() fil.close() - config = re.sub("profile.sh", os.path.join(self.aster_dir, "profile.sh"), config) + config = re.sub(" profile.sh", os.path.join(self.aster_dir, "profile.sh"), config) path=os.path.join(os.path.abspath(gen.module.prefix),'lib', 'python%s.%s' % (sys.version_info[0], sys.version_info[1]), 'site-packages','salome','%s_container.py' % self.name)