2
1
mirror of https://github.com/qpdf/qpdf.git synced 2025-01-31 02:48:31 +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 $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)