diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-03-13 08:56:06 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-03-13 08:56:06 -0230 |
commit | 94e405f4a565127e287ef466adebc5fc09de32c6 (patch) | |
tree | eda47469e4f5171f60a245489abb27fece54daff /distribution/bin/makepy.py | |
parent | noarch RPM cleanup (diff) | |
download | ice-94e405f4a565127e287ef466adebc5fc09de32c6.tar.bz2 ice-94e405f4a565127e287ef466adebc5fc09de32c6.tar.xz ice-94e405f4a565127e287ef466adebc5fc09de32c6.zip |
Some cleanup of distribution files
Diffstat (limited to 'distribution/bin/makepy.py')
-rwxr-xr-x | distribution/bin/makepy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distribution/bin/makepy.py b/distribution/bin/makepy.py index b91441acc72..8e3f620b446 100755 --- a/distribution/bin/makepy.py +++ b/distribution/bin/makepy.py @@ -78,12 +78,12 @@ print "Building Ice " + iceVersion # # Ensure that the source archive or directory exists and create the build directory. # -buildRootDir = os.path.join(distDir, "..", os.path.join("build-py-" + iceVersion)) +buildRootDir = os.path.join(distDir, "..", "build-py-" + iceVersion) srcDir = os.path.join(buildRootDir, "Ice-" + iceVersion + "-src") if forceclean or not os.path.exists(srcDir): if os.path.exists(buildRootDir): - print "Removing previous build from " + os.path.join("build-py-" + iceVersion) + "...", + print "Removing previous build from build-py-" + iceVersion + "...", sys.stdout.flush() shutil.rmtree(buildRootDir) print "ok" |