diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-09 17:08:32 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-09 17:08:32 +0000 |
commit | 3b4ac17f248cfd037050d12f58156a723d560530 (patch) | |
tree | 456072111e93cf2b0a236ca0db1df6fbfaaf740f /cpp/newmakebindist.py | |
parent | fixes for README handling (diff) | |
download | ice-3b4ac17f248cfd037050d12f58156a723d560530.tar.bz2 ice-3b4ac17f248cfd037050d12f58156a723d560530.tar.xz ice-3b4ac17f248cfd037050d12f58156a723d560530.zip |
stripping newlines from filenames
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-x | cpp/newmakebindist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index 2326678256e..69527fe4eb4 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -669,7 +669,7 @@ def main(): # dbLocation = buildEnvironment['DB_HOME'] dbFiles = getDBfiles(dbLocation) - for f in dbFiles: + for f in dbFiles.strip(): shutil.copy(dbLocation + '/' + f, 'Ice-' + version + '/' + f) |