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/common.cxx | |
parent | 0f88ef24789af5761c3c3dd03f9a07f5978aca91 (diff) |
Adapt to renaming butl::casecmp() to icasecmp()
Diffstat (limited to 'libbuild2/cc/common.cxx')
-rw-r--r-- | libbuild2/cc/common.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cc/common.cxx b/libbuild2/cc/common.cxx index bfcb00c..7d929a8 100644 --- a/libbuild2/cc/common.cxx +++ b/libbuild2/cc/common.cxx @@ -985,7 +985,7 @@ namespace build2 // /LIBPATH:<dir> (case-insensitive). // if ((o[0] == '/' || o[0] == '-') && - casecmp (o.c_str () + 1, "LIBPATH:", 8) == 0) + icasecmp (o.c_str () + 1, "LIBPATH:", 8) == 0) d = dir_path (o, 9, string::npos); else continue; |