diff options
author | Brent Eagles <brent@zeroc.com> | 2006-07-10 12:57:37 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2006-07-10 12:57:37 +0000 |
commit | 2f1007622788c6ed63a1f8a9ca9dae997de755ef (patch) | |
tree | 752cc43bab33847b54a0e164c584f99f223ce4f2 /cpp/makebindist.py | |
parent | bug 1199: SSL & C# (diff) | |
download | ice-2f1007622788c6ed63a1f8a9ca9dae997de755ef.tar.bz2 ice-2f1007622788c6ed63a1f8a9ca9dae997de755ef.tar.xz ice-2f1007622788c6ed63a1f8a9ca9dae997de755ef.zip |
Correct for some moved files and add x64 as a platform for mono builds
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index 634d33c8ef3..4ead611ff4d 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -377,7 +377,7 @@ def extractDemos(sources, buildDir, version, distro, demoDir): for f in os.listdir(srcConfigDir): src = os.path.join(srcConfigDir, f) dest = os.path.join(destConfigDir, f) - if not os.path.isdir(f) and not os.path.islink(f): + if not os.path.isdir(src) and not os.path.islink(src): shutil.copy(src, dest) if demoDir == 'j': @@ -1078,7 +1078,7 @@ def main(): if not getPlatform() in ['aix', 'solaris', 'hpux']: sourceTarBalls.append(('icepy','IcePy-' + version, 'py')) - if getPlatform() == "linux": + if getPlatform().startswith("linux"): sourceTarBalls.append(('icecs','IceCS-' + version, 'cs')) os.environ['ICE_HOME'] = installDir + '/Ice-' + version |