diff options
author | Marc Laukien <marc@zeroc.com> | 2003-02-14 21:54:06 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-02-14 21:54:06 +0000 |
commit | d1b23e50ab3ce4bbe0d99fc4263be193033008a5 (patch) | |
tree | 25acab6c3f981038e1678bb43b2a96fe6d75fc98 /java/makedist.py | |
parent | Added workqueue.dsp (diff) | |
download | ice-d1b23e50ab3ce4bbe0d99fc4263be193033008a5.tar.bz2 ice-d1b23e50ab3ce4bbe0d99fc4263be193033008a5.tar.xz ice-d1b23e50ab3ce4bbe0d99fc4263be193033008a5.zip |
fixed config file
Diffstat (limited to 'java/makedist.py')
-rwxr-xr-x | java/makedist.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/makedist.py b/java/makedist.py index 8d022a3f2ca..c33a0e54446 100755 --- a/java/makedist.py +++ b/java/makedist.py @@ -110,19 +110,19 @@ for x in slicedirs: if not skipDocs: cwd = os.getcwd() os.chdir(os.path.join("ice", "src", "icecpp")) - os.system("gmake") + os.system("make") os.chdir(cwd) os.chdir(os.path.join("ice", "src", "IceUtil")) - os.system("gmake") + os.system("make") os.chdir(cwd) os.chdir(os.path.join("ice", "src", "Slice")) - os.system("gmake") + os.system("make") os.chdir(cwd) os.chdir(os.path.join("ice", "src", "slice2docbook")) - os.system("gmake") + os.system("make") os.chdir(cwd) os.chdir(os.path.join("ice", "doc")) - os.system("gmake") + os.system("make") os.chdir(cwd) os.mkdir(os.path.join("icej", "doc")) os.rename(os.path.join("ice", "doc", "manual"), os.path.join("icej", "doc", "manual")) |