summaryrefslogtreecommitdiff
path: root/distribution/bin/makegem.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2015-03-13 08:56:06 -0230
committerDwayne Boone <dwayne@zeroc.com>2015-03-13 08:56:06 -0230
commit94e405f4a565127e287ef466adebc5fc09de32c6 (patch)
treeeda47469e4f5171f60a245489abb27fece54daff /distribution/bin/makegem.py
parentnoarch RPM cleanup (diff)
downloadice-94e405f4a565127e287ef466adebc5fc09de32c6.tar.bz2
ice-94e405f4a565127e287ef466adebc5fc09de32c6.tar.xz
ice-94e405f4a565127e287ef466adebc5fc09de32c6.zip
Some cleanup of distribution files
Diffstat (limited to 'distribution/bin/makegem.py')
-rwxr-xr-xdistribution/bin/makegem.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/distribution/bin/makegem.py b/distribution/bin/makegem.py
index 17df20b667a..024cba0f805 100755
--- a/distribution/bin/makegem.py
+++ b/distribution/bin/makegem.py
@@ -77,12 +77,12 @@ print "Building Ice " + iceVersion + " gem"
#
# Ensure that the source archive or directory exists and create the build directory.
#
-buildRootDir = os.path.join(distDir, "..", os.path.join("build-gem-" + iceVersion))
+buildRootDir = os.path.join(distDir, "..", "build-gem-" + 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-gem-" + iceVersion) + "...",
+ print "Removing previous build from build-gem-" + iceVersion + "...",
sys.stdout.flush()
shutil.rmtree(buildRootDir)
print "ok"