Merge pull request #132800 from deliciouslytyped/separatedebuginfo-extraneous-local

setup-hooks: separate-debug-info.sh: Remove extraneous local variable…
This commit is contained in:
Sandro 2021-08-07 11:53:29 +02:00 committed by GitHub
commit f6b209b891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@ _separateDebugInfo() {
dst="$dst/lib/debug/.build-id"
# Find executables and dynamic libraries.
local i magic
local i
while IFS= read -r -d $'\0' i; do
if ! isELF "$i"; then continue; fi