summaryrefslogtreecommitdiff
path: root/java/makebindist.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2004-05-24 15:06:25 +0000
committerMark Spruiell <mes@zeroc.com>2004-05-24 15:06:25 +0000
commit69a4ae9090f36781e77e39f4082798857fe6b636 (patch)
tree542483854e4df8efddc04bfb8b173092f775567b /java/makebindist.py
parentAdded a sleep before the final call to collectGarbage() to see whether that (diff)
downloadice-69a4ae9090f36781e77e39f4082798857fe6b636.tar.bz2
ice-69a4ae9090f36781e77e39f4082798857fe6b636.tar.xz
ice-69a4ae9090f36781e77e39f4082798857fe6b636.zip
hp fixes
Diffstat (limited to 'java/makebindist.py')
-rwxr-xr-xjava/makebindist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/makebindist.py b/java/makebindist.py
index 546d958e857..125b3c20f51 100755
--- a/java/makebindist.py
+++ b/java/makebindist.py
@@ -152,7 +152,7 @@ for x in executables:
if symlinks:
for so in libraries:
- if platform == "hp":
+ if platform == "hpux":
soBase = so
soLib = so + ".sl"
else:
@@ -203,7 +203,7 @@ if strip:
os.system("strip " + stripOpts + " " + bindir + "/" + x)
os.chmod(bindir + "/" + x, 0755)
for x in libraries:
- if platform == "hp":
+ if platform == "hpux":
soLib = x + ".sl"
elif platform == "macosx":
soLib = x + ".dylib"