From a74c288805a69bf6ef9af6f1d05746b122a751cd Mon Sep 17 00:00:00 2001 From: Ben Webb Date: Thu, 7 Dec 2023 12:09:06 -0800 Subject: [PATCH] Search paths also apply to IMP dependencies If we built IMP with a dependency (e.g. Boost) not in the default search path, we can use the same scons options to find it at test time. --- tools/nightly-tests/test-install/SConstruct | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/nightly-tests/test-install/SConstruct b/tools/nightly-tests/test-install/SConstruct index 4ae5b1f6a6..87c0110455 100644 --- a/tools/nightly-tests/test-install/SConstruct +++ b/tools/nightly-tests/test-install/SConstruct @@ -1,6 +1,8 @@ vars = Variables('config.py') -vars.Add('libpath', 'Directory/ies where IMP libraries are installed', None) -vars.Add('cpppath', 'Directory/ies where IMP headers are installed', None) +vars.Add('libpath', + 'Directory/ies where IMP or dependency libraries are installed', None) +vars.Add('cpppath', + 'Directory/ies where IMP or dependency headers are installed', None) vars.Add('cxxflags', 'C++ compile flags', '') vars.Add('linkflags', 'Link flags', '') vars.Add('mock_config', 'Name of the mock config used to build IMP RPMs. '