diff options
author | Brent Eagles <brent@zeroc.com> | 2005-02-25 20:24:49 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-02-25 20:24:49 +0000 |
commit | db04e322d830b267eff8e2d5f7fa5d0757c957ff (patch) | |
tree | 4d6a14aaddb774fa10aef3f9f9bb8a7f18884845 /cpp/newmakebindist.py | |
parent | initial draft of README.RPM (diff) | |
download | ice-db04e322d830b267eff8e2d5f7fa5d0757c957ff.tar.bz2 ice-db04e322d830b267eff8e2d5f7fa5d0757c957ff.tar.xz ice-db04e322d830b267eff8e2d5f7fa5d0757c957ff.zip |
fixing bug where the C# Make.rules.cs file was being missed during the
install
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-x | cpp/newmakebindist.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index f1ca26bd5ec..18135fa789f 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -253,7 +253,10 @@ def makeInstall(buildDir, installDir, distro, clean): os.chdir(cwd) return - os.system("perl -pi -e 's/^prefix.*$/prefix = \$\(INSTALL_ROOT\)/' config/Make.rules") + if distro.startswith("IceCS"): + os.system("perl -pi -e 's/^prefix.*$/prefix = \$\(INSTALL_ROOT\)/' config/Make.rules.cs") + else: + os.system("perl -pi -e 's/^prefix.*$/prefix = \$\(INSTALL_ROOT\)/' config/Make.rules") if distro.startswith("IcePy"): try: |