From e57de610db4d8742eefc6d8995475ba8e3a8b201 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Thu, 19 Jun 2025 02:34:11 +0300 Subject: [PATCH] Use a relative path to atomic-arch-config instead of import-search. Using a relative path is more explicit and should avoid a potential name clash in case if there appears a different b2 module with the same name in a different search location. --- config/Jamfile.v2 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/Jamfile.v2 b/config/Jamfile.v2 index 796e43a..a9ebde9 100644 --- a/config/Jamfile.v2 +++ b/config/Jamfile.v2 @@ -5,8 +5,7 @@ # http://www.boost.org/LICENSE_1_0.txt) # -import-search /boost/atomic/build ; -import atomic-arch-config ; +import ../build/atomic-arch-config ; obj has_sse2 : has_sse2.cpp : @atomic-arch-config.sse2-flags ; explicit has_sse2 ;