Skip to content

Commit b4c3df1

Browse files
Andrew Morrowevergreen
authored andcommitted
SERVER-42891 Placate SCons configure subsystem regarding status of dSYM nodes
1 parent 18f95f8 commit b4c3df1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

site_scons/site_tools/separate_debug.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ def new_emitter(target, source, env):
8080

8181
bitcode_file = None
8282
if env.TargetOSIs('darwin'):
83-
debug_file = env.Dir(str(target[0]) + ".dSYM")
83+
debug_file = env.Entry(str(target[0]) + ".dSYM")
84+
env.Precious(debug_file)
8485
if bitcode:
8586
bitcode_file = env.File(str(target[0]) + ".bcsymbolmap")
8687
elif env.TargetOSIs('posix'):

0 commit comments

Comments
 (0)