Skip to content

Commit 5bf28f0

Browse files
committed
Whitespace
1 parent 4e4e202 commit 5bf28f0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

SConstruct

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ else:
235235
)
236236
Default(library)
237237

238+
238239
# *** Build Android lib
239240

240241
if sys.platform.startswith("win"):
@@ -289,6 +290,7 @@ def separate_debug_symbols(target, source, env):
289290
Exit(1)
290291
elif platform == "linux":
291292
debug_path = f"{target_path}.debug"
293+
292294
err = run(f'objcopy --only-keep-debug --compress-debug-sections=zlib "{target_path}" "{debug_path}"')
293295
if err != 0:
294296
print(f"ERROR: Failed to split debug symbols (exit code {err})")
@@ -309,6 +311,7 @@ if env.get("separate_debug_symbols", True):
309311
if platform in ["macos", "ios", "linux"]:
310312
env.AddPostAction(library, Action(separate_debug_symbols))
311313

314+
312315
# *** Add help for optional targets.
313316

314317
Help("""

0 commit comments

Comments
 (0)