diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-14 15:01:55 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-14 15:01:55 +0000 |
commit | 500a1fc3cfee7d0cdf057c0430886e0a9a3e4241 (patch) | |
tree | afa140933b70a7515524459e9f62deec8eecdbad /cpp/newmakebindist.py | |
parent | Generated files weren't supposed to go in there (diff) | |
download | ice-500a1fc3cfee7d0cdf057c0430886e0a9a3e4241.tar.bz2 ice-500a1fc3cfee7d0cdf057c0430886e0a9a3e4241.tar.xz ice-500a1fc3cfee7d0cdf057c0430886e0a9a3e4241.zip |
merging changes to CVS hostname
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-x | cpp/newmakebindist.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index e97bf33b434..235bf2a9b05 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -74,7 +74,7 @@ def getVersion(cvsTag, buildDir): os.chdir(buildDir) if getPlatform() == "aix": os.environ["LIBPATH"] = "" - os.system("cvs -d cvs.mutablerealms.com:/home/cvsroot export -r " + cvsTag + " ice/include/IceUtil/Config.h") + os.system("cvs -d cvs.zeroc.com:/home/cvsroot export -r " + cvsTag + " ice/include/IceUtil/Config.h") result = [ getIceVersion("ice/include/IceUtil/Config.h"), getIceSoVersion("ice/include/IceUtil/Config.h")] os.remove("ice/include/IceUtil/Config.h") @@ -87,8 +87,8 @@ def getInstallFiles(cvsTag, buildDir): cwd = os.getcwd() os.chdir(buildDir) os.system('rm -rf ' + buildDir + '/ice/install') - os.system('cvs -d cvs.mutablerealms.com:/home/cvsroot export -r ' + cvsTag + ' ice/install/unix') - os.system('cvs -d cvs.mutablerealms.com:/home/cvsroot export -r ' + cvsTag + ' ice/install/rpm') + os.system('cvs -d cvs.zeroc.com:/home/cvsroot export -r ' + cvsTag + ' ice/install/unix') + os.system('cvs -d cvs.zeroc.com:/home/cvsroot export -r ' + cvsTag + ' ice/install/rpm') os.chdir(cwd) return buildDir + '/ice/install' |