From 0d275db1433dec9bc7b4fcf5fcd28b42da3b6166 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 6 Sep 2018 19:20:01 +0200 Subject: Fix issues with interaction between binless logic and Windows DLLs --- build2/cc/windows-rpath.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build2/cc/windows-rpath.cxx') diff --git a/build2/cc/windows-rpath.cxx b/build2/cc/windows-rpath.cxx index 507395c..e9fd680 100644 --- a/build2/cc/windows-rpath.cxx +++ b/build2/cc/windows-rpath.cxx @@ -77,7 +77,7 @@ namespace build2 { // This can be an "undiscovered" DLL (see search_library()). // - if (!l->is_a () || l->path ().empty ()) // Covers binless. + if (!l->is_a () || l->path ().empty ()) // Also covers binless. return; } else @@ -152,7 +152,7 @@ namespace build2 if (l != nullptr) { - if (l->is_a () && !l->path ().empty ()) // Covers binless. + if (l->is_a () && !l->path ().empty ()) // Also covers binless. { // Get .pdb if there is one. // -- cgit v1.1