From 8efa97024e4ad2bac1cc9639e36c72fa1be4595d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 3 Feb 2020 15:45:39 +0200 Subject: Exclude -lexecinfo from resolution --- libbuild2/cc/pkgconfig.cxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libbuild2/cc/pkgconfig.cxx b/libbuild2/cc/pkgconfig.cxx index 775b055..3e25167 100644 --- a/libbuild2/cc/pkgconfig.cxx +++ b/libbuild2/cc/pkgconfig.cxx @@ -878,6 +878,11 @@ namespace build2 if (l == "-lSystem") continue; } + else if (tclass == "bsd") + { + if (l == "-lexecinfo") + continue; + } // Prepare user search paths by entering the -L paths from the .pc // file. -- cgit v1.1