diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-02 17:13:43 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-02 17:13:43 +0000 |
commit | 56f4bdf5c3b04c4176dfeb678d5c1301ef67a668 (patch) | |
tree | 42b8d5a49786414142ea7d2aeabfa3678e400384 /cpp/newmakebindist.py | |
parent | *** empty log message *** (diff) | |
download | ice-56f4bdf5c3b04c4176dfeb678d5c1301ef67a668.tar.bz2 ice-56f4bdf5c3b04c4176dfeb678d5c1301ef67a668.tar.xz ice-56f4bdf5c3b04c4176dfeb678d5c1301ef67a668.zip |
fix a noclean bug
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-x | cpp/newmakebindist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index 864cce71329..e494cbbfebc 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -505,9 +505,9 @@ def main(): if build and not cvsMode: collectSources = False - if sources == None and clean: + if sources == None: sources = buildDir + "/sources" - collectSources = True + collectSources = clean # # Ice must be first or building the other source distributions will fail. |