2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-21 09:39:09 +00:00

Windows fix

This commit is contained in:
Jay Berkenbilt 2018-01-14 20:09:15 -05:00
parent 04e47deaf9
commit 7211a59eac

View File

@ -90,7 +90,7 @@ sub get_dlls
{ {
my @result = (); my @result = ();
my $exe = shift; 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>) while (<O>)
{ {
if (m/^\s+DLL Name:\s+(.+\.dll)/i) if (m/^\s+DLL Name:\s+(.+\.dll)/i)