[Commits] (markie) Fix bug #1460,
don't create developers distributions
commits at osafoundation.org
commits at osafoundation.org
Thu May 27 17:26:23 PDT 2004
Commit by: markie
Modified files:
chandler/__hardhat__.py 1.187 1.188
Log message:
Fix bug #1460, don't create developers distributions
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/chandler/__hardhat__.py.diff?r1=text&tr1=1.187&r2=text&tr2=1.188
Index: chandler/__hardhat__.py
diff -u chandler/__hardhat__.py:1.187 chandler/__hardhat__.py:1.188
--- chandler/__hardhat__.py:1.187 Thu May 27 10:53:30 2004
+++ chandler/__hardhat__.py Thu May 27 17:26:22 2004
@@ -78,11 +78,6 @@
buildenv['distdir'] = distDirParent
distDir = distDirParent
- os.chdir(buildenv['root'])
- compFile2 = hardhatlib.compressDirectory(buildenv,
- ["debug"],
- "Chandler_osx_dev_debug_" + buildVersionShort)
-
elif buildenv['os'] == 'posix':
distName = 'Chandler_linux_debug_' + buildVersionShort
@@ -98,12 +93,6 @@
compFile1 = hardhatlib.compressDirectory(buildenv, [distName],
distName)
- os.chdir(buildenv['root'])
- compFile2 = hardhatlib.compressDirectory(buildenv,
- ["debug"],
- "Chandler_linux_dev_debug_" + buildVersionShort)
- os.chdir(buildenv['root'])
-
elif buildenv['os'] == 'win':
distName = 'Chandler_win_debug_' + buildVersionShort
@@ -120,11 +109,6 @@
compFile1 = hardhatlib.compressDirectory(buildenv, [distName],
distName)
- os.chdir(buildenv['root'])
- compFile2 = hardhatlib.compressDirectory(buildenv,
- ["debug"],
- "Chandler_win_dev_debug_" + buildVersionShort)
-
if buildenv['version'] == 'release':
@@ -143,12 +127,6 @@
compFile1 = hardhatlib.compressDirectory(buildenv, [distName],
distName)
- os.chdir(buildenv['root'])
- compFile2 = hardhatlib.compressDirectory(buildenv,
- ["release"],
- "Chandler_linux_dev_release_" + buildVersionShort)
- os.chdir(buildenv['root'])
-
if buildenv['os'] == 'osx':
distName = 'Chandler_osx_' + buildVersionShort
@@ -179,11 +157,6 @@
buildenv['distdir'] = distDirParent
distDir = distDirParent
- os.chdir(buildenv['root'])
- compFile2 = hardhatlib.compressDirectory(buildenv,
- ["release"],
- "Chandler_osx_dev_release_" + buildVersionShort)
-
if buildenv['os'] == 'win':
distName = 'Chandler_win_' + buildVersionShort
@@ -199,11 +172,6 @@
compFile1 = hardhatlib.compressDirectory(buildenv, [distName],
distName)
- os.chdir(buildenv['root'])
- compFile2 = hardhatlib.compressDirectory(buildenv,
- ["release"],
- "Chandler_win_dev_release_" + buildVersionShort)
-
# put the compressed files in the right place if specified 'outputdir'
if buildenv['outputdir']:
if not os.path.exists(buildenv['outputdir']):
More information about the Commits
mailing list