summaryrefslogtreecommitdiff
path: root/site_scons/site_tools/auto_install_binaries.py
diff options
context:
space:
mode:
Diffstat (limited to 'site_scons/site_tools/auto_install_binaries.py')
-rw-r--r--site_scons/site_tools/auto_install_binaries.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/site_scons/site_tools/auto_install_binaries.py b/site_scons/site_tools/auto_install_binaries.py
index 9f3de6166df..9a71b4919b7 100644
--- a/site_scons/site_tools/auto_install_binaries.py
+++ b/site_scons/site_tools/auto_install_binaries.py
@@ -10,6 +10,12 @@ def generate(env):
suffix_map = {
env.subst('$PROGSUFFIX') : 'bin',
'.dylib' : 'lib',
+ # TODO: These 'lib' answers are incorrect. The location for the debug info
+ # should be the same as the target itself, which might be bin or lib. We need
+ # a solution for that. When that is fixed, add 'Program' back into the list
+ # of separate debug targets in the separate_debug.py tool.
+ '.dSYM' : 'lib',
+ '.debug' : 'lib',
'.so' : 'lib',
'.dll' : 'bin',
'.lib' : 'lib',