aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/cc/windows-rpath.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/cc/windows-rpath.cxx')
-rw-r--r--libbuild2/cc/windows-rpath.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/cc/windows-rpath.cxx b/libbuild2/cc/windows-rpath.cxx
index 5583315..b5d82b1 100644
--- a/libbuild2/cc/windows-rpath.cxx
+++ b/libbuild2/cc/windows-rpath.cxx
@@ -94,7 +94,7 @@ namespace build2
//
size_t p (path::traits_type::find_extension (f));
- if (p == string::npos || casecmp (f.c_str () + p + 1, "dll") != 0)
+ if (p == string::npos || icasecmp (f.c_str () + p + 1, "dll") != 0)
return;
}
@@ -172,7 +172,7 @@ namespace build2
{
size_t p (path::traits_type::find_extension (f));
- if (p != string::npos && casecmp (f.c_str () + p + 1, "dll") == 0)
+ if (p != string::npos && icasecmp (f.c_str () + p + 1, "dll") == 0)
{
// See if we can find a corresponding .pdb.
//