aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/link.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/cc/link.cxx')
-rw-r--r--build2/cc/link.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/cc/link.cxx b/build2/cc/link.cxx
index 5a8dcb7..9a8e21c 100644
--- a/build2/cc/link.cxx
+++ b/build2/cc/link.cxx
@@ -746,12 +746,12 @@ namespace build2
target& t, scope& bs, lorder lo,
bool for_install) const
{
- // Use -rpath-link on targets that support it (Linux, FreeBSD). Note
+ // Use -rpath-link on targets that support it (Linux, *BSD). Note
// that we don't really need it for top-level libraries.
//
if (for_install)
{
- if (tclass != "linux" && tclass != "freebsd")
+ if (tclass != "linux" && tclass != "bsd")
return;
}