Fixed another bug in the modified install script.

Sat, 18 Sep 2010 12:29:34 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 18 Sep 2010 12:29:34 +0200
changeset 626
41e79c291eff
parent 625
a2d295ee30ba
child 627
d8ada67aecf6

Fixed another bug in the modified install script.

install.py file | annotate | diff | comparison | revisions
--- a/install.py	Fri Sep 17 19:29:39 2010 +0200
+++ b/install.py	Sat Sep 18 12:29:34 2010 +0200
@@ -812,6 +812,9 @@
     try:
         if installFromSource:
             os.rename(configName, configName + ".orig")
+            configNameC = configName + 'c'
+            if os.path.exists(configNameC):
+                os.remove(configNameC)
         os.remove(configName)
     except EnvironmentError:
         pass
@@ -856,6 +859,9 @@
     try:
         if installFromSource:
             os.remove(configName)
+            configNameC = configName + 'c'
+            if os.path.exists(configNameC):
+                os.remove(configNameC)
             os.rename(configName + ".orig", configName)
     except EnvironmentError:
         pass

eric ide

mercurial