summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oe/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py
index 587810bdaf..1511ba47c4 100644
--- a/meta/lib/oe/package.py
+++ b/meta/lib/oe/package.py
@@ -1660,7 +1660,7 @@ def process_shlibs(pkgfiles, d):
1660 1660
1661 if (file.endswith(".dll") or file.endswith(".exe")): 1661 if (file.endswith(".dll") or file.endswith(".exe")):
1662 # use objdump to search for "DLL Name: .*\.dll" 1662 # use objdump to search for "DLL Name: .*\.dll"
1663 p = subprocess.Popen([d.expand("${HOST_PREFIX}objdump"), "-p", file], stdout=subprocess.PIPE, stderr=subprocess.PIPE) 1663 p = subprocess.Popen([d.expand("${OBJDUMP}"), "-p", file], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
1664 out, err = p.communicate() 1664 out, err = p.communicate()
1665 # process the output, grabbing all .dll names 1665 # process the output, grabbing all .dll names
1666 if p.returncode == 0: 1666 if p.returncode == 0: