Windows fix

This commit is contained in:
Jay Berkenbilt 2018-01-14 20:09:15 -05:00
parent 04e47deaf9
commit 7211a59eac
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ sub get_dlls
{
my @result = ();
my $exe = shift;
open(O, "$objdump -p $exe|") or die "$whoami: can't run objdump\n";
open(O, "$objdump -p \"$exe\"|") or die "$whoami: can't run objdump\n";
while (<O>)
{
if (m/^\s+DLL Name:\s+(.+\.dll)/i)