diff options
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): |