Skip to content
Snippets Groups Projects
Commit 3ee979c1 authored by Sergey Sharybin's avatar Sergey Sharybin
Browse files

Celaup: Spelling in comment

parent 4fad0d8f
No related branches found
No related tags found
No related merge requests found
...@@ -78,10 +78,10 @@ def getNeededLibrariesLDD(binary_filepath): ...@@ -78,10 +78,10 @@ def getNeededLibrariesLDD(binary_filepath):
This function uses ldd to collect libraries which binary depends on. This function uses ldd to collect libraries which binary depends on.
Not totally safe since ldd might actually execute the binary to get it's Not totally safe since ldd might actually execute the binary to get it's
symbols and will also collect indirect dependnecies which might not be symbols and will also collect indirect dependencies which might not be
desired. desired.
Has advantage of telling that some dependnecy library is not found. Has advantage of telling that some dependency library is not found.
""" """
ldd_command = ("ldd", str(binary_filepath)) ldd_command = ("ldd", str(binary_filepath))
ldd_output = subprocess.check_output(ldd_command, stderr=subprocess.STDOUT) ldd_output = subprocess.check_output(ldd_command, stderr=subprocess.STDOUT)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment