diff options
Diffstat (limited to 'cpp/fixVersion.py')
-rwxr-xr-x | cpp/fixVersion.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/fixVersion.py b/cpp/fixVersion.py index f6bc4b8afdb..aa9049fa8e8 100755 --- a/cpp/fixVersion.py +++ b/cpp/fixVersion.py @@ -183,13 +183,13 @@ if not patchIceE: [("VERSION[\t\s]*= ([0-9]*\.[0-9]*\.[0-9]*)", version), ("SOVERSION[\t\s]*= ([0-9]*)", soVersion(version))]) - fileMatchAndReplace(os.path.join(ice_home, "src", "ca", "import.py"), + fileMatchAndReplace(os.path.join(ice_home, "config", "ca", "import.py"), [("Ice-([0-9]*\.[0-9]*\.[0-9]*)", version)]) - fileMatchAndReplace(os.path.join(ice_home, "src", "ca", "initca.py"), + fileMatchAndReplace(os.path.join(ice_home, "config", "ca", "initca.py"), [("Ice-([0-9]*\.[0-9]*\.[0-9]*)", version)]) - fileMatchAndReplace(os.path.join(ice_home, "src", "ca", "req.py"), + fileMatchAndReplace(os.path.join(ice_home, "config", "ca", "req.py"), [("Ice-([0-9]*\.[0-9]*\.[0-9]*)", version)]) - fileMatchAndReplace(os.path.join(ice_home, "src", "ca", "sign.py"), + fileMatchAndReplace(os.path.join(ice_home, "config", "ca", "sign.py"), [("Ice-([0-9]*\.[0-9]*\.[0-9]*)", version)]) fileMatchAllAndReplace(os.path.join(ice_home, "src", "Freeze", "freeze.dsp"), |