diff options
author | Jose <jose@zeroc.com> | 2014-11-05 11:32:24 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-11-05 11:32:24 +0100 |
commit | 0d72747b6fbe726d4038212f1eb0b8365e93252a (patch) | |
tree | 9df17e8f00da84123a6071a5ba46a4d15b9fab2c /distribution/lib/DistUtils.py | |
parent | fix for db53.spec (diff) | |
download | ice-0d72747b6fbe726d4038212f1eb0b8365e93252a.tar.bz2 ice-0d72747b6fbe726d4038212f1eb0b8365e93252a.tar.xz ice-0d72747b6fbe726d4038212f1eb0b8365e93252a.zip |
More fixes for binary distributions
Diffstat (limited to 'distribution/lib/DistUtils.py')
-rw-r--r-- | distribution/lib/DistUtils.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/distribution/lib/DistUtils.py b/distribution/lib/DistUtils.py index 6b6aa3ff221..52ce1195a0d 100644 --- a/distribution/lib/DistUtils.py +++ b/distribution/lib/DistUtils.py @@ -185,19 +185,6 @@ def copyMatchingFiles(srcpath, destpath, patterns, warnDestExists = True, verbos copy(f, os.path.join(destpath, os.path.basename(f)), warnDestExists) # -# Get the language mapping directory for a given suffix. -# -def getMappingDir(suffix, mapping): - if mapping == "cpp": - return suffix - elif mapping == "java": - return suffix + "j" - elif mapping == "android": - return suffix + "a" - else: - return suffix + mapping - -# # Comment out rules in a Makefile. # def fixMakefileForFile(path): |