diff options
author | Gunter Knauf <gk@gknw.de> | 2007-01-25 14:06:38 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2007-01-25 14:06:38 +0000 |
commit | abb4cdafe994c0894a29f0a67829a0dc99bd4ab7 (patch) | |
tree | 2f802a5f2ce6e0936a6fcd3d8f813a48fe47833a | |
parent | 2b7bcf2505b5f976905edbe1e5ff3e86593bc07b (diff) |
set proper lib extension for non-configure mingw32 builds on Win32.
-rwxr-xr-x | tests/testcurl.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index 48f63369c..fd9e7db88 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -135,6 +135,9 @@ if ($^O eq 'MSWin32' || $targetos) { } elsif ($targetos =~ /mingw32/) { $binext = '.exe'; + if ($^O eq 'MSWin32') { + $libext = '.a'; + } } elsif ($targetos =~ /netware/) { $configurebuild = 0; |