diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-09-28 18:01:32 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-01 12:15:10 +0300 |
commit | 4c7a3c1350687d2913a2e008c2c41deceedcdead (patch) | |
tree | 176952b332f8195e2bce8d95ee2129a9c1870ff9 /libbuild2/cc/windows-rpath.cxx | |
parent | 0f88ef24789af5761c3c3dd03f9a07f5978aca91 (diff) |
Adapt to renaming butl::casecmp() to icasecmp()
Diffstat (limited to 'libbuild2/cc/windows-rpath.cxx')
-rw-r--r-- | libbuild2/cc/windows-rpath.cxx | 4 |
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. // |