diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-07-25 06:03:10 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-07-25 06:03:10 +0000 |
commit | d784526daef7bfa7ef365d723fc714afa12cfc33 (patch) | |
tree | 587edca01482c6ef263f7ccd717197f122f638e7 /tests | |
parent | 79d480e1e7c7dcc9e2f2301fc43bacccfb096db6 (diff) |
libs built with libtool are named .la in the build dir
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/testcurl.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index f27069b98..5fe614705 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -82,7 +82,7 @@ while ($ARGV[0]) { $gnulikebuild = 1; $confsuffix = ''; $binext = ''; -$libext = '.a'; +$libext = '.la'; # .la since both libcurl and libcares are made with libtool if ($^O eq 'MSWin32' || $targetos ne '') { $gnulikebuild = 0; if ($targetos eq '') { |