mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Set the objdump default to "objdump" in win-ldd.pl
The environment variable is to be used if the caller knows that the default objdump can't parse Windows DLL files (COFF-PE). On Fedora, Debian, and OpenSUSE, the default objdump can, and obviously the native one on Windows can too. Signed-off-by: Thiago Macieira <thiago@macieira.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
fa532f0f28
commit
2a871fc3e4
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
#!perl
|
||||
use strict;
|
||||
my %deploy;
|
||||
my $objdump = $ENV{objdump} ? $ENV{objdump} : "i686-w64-mingw32-objdump";
|
||||
my $objdump = $ENV{objdump} ? $ENV{objdump} : "objdump";
|
||||
my @searchdirs = split(/:/, $ENV{PATH});
|
||||
|
||||
sub addDependenciesFor($) {
|
||||
|
|
Loading…
Add table
Reference in a new issue