diff options
author | 2014-09-25 20:50:14 -0700 | |
---|---|---|
committer | 2014-11-13 10:13:58 -0800 | |
commit | ec7bb26873c7aa4cff57065fe29e19cb1cd39032 (patch) | |
tree | faf07165c4f2c2c524c52e804a040359b7820315 /scripts | |
parent | e10284d2cf2067913a81ad5c897c16e086b9e3b8 (diff) | |
download | subsurface-ec7bb26873c7aa4cff57065fe29e19cb1cd39032.tar.gz |
Minor changes to Windows build and packaging
With these changes we link statically against libusb and libdivecomputer
but don't add the .a files to our installers.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/win-ldd.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/win-ldd.pl b/scripts/win-ldd.pl index 9a303d325..7870a13e3 100644 --- a/scripts/win-ldd.pl +++ b/scripts/win-ldd.pl @@ -51,7 +51,7 @@ for (@ARGV) { next if /^-/; if (-d $_) { push @searchdirs, $_; - } elsif (-f $_) { + } elsif (-f $_ && ! /\.a$/) { # Add $_'s path to the search list too my $dirname = $_; $dirname =~ s,/[^/]+$,,; |