diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/testcurl.pl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index de6fba408..d2379f69c 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -142,7 +142,12 @@ if ($^O eq 'MSWin32' || $targetos) { elsif ($targetos =~ /netware/) { $configurebuild = 0; $binext = '.nlm'; - $libext = '.lib'; + if ($^O eq 'MSWin32') { + $libext = '.lib'; + } + else { + $libext = '.a'; + } } } |