From 3d1c4e5089a438e08af4ba889105227daee3fda7 Mon Sep 17 00:00:00 2001 From: "Billy K. Poon" Date: Tue, 28 Feb 2023 12:53:51 -0800 Subject: [PATCH] bootstrap: restore no_boost_src default for CentOS 7 for Phenix builders [skip ci] --- libtbx/auto_build/bootstrap.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libtbx/auto_build/bootstrap.py b/libtbx/auto_build/bootstrap.py index ea16d823a9..bc64d3d6c0 100644 --- a/libtbx/auto_build/bootstrap.py +++ b/libtbx/auto_build/bootstrap.py @@ -2817,6 +2817,8 @@ def set_builder_defaults(options): options.python = '39' if not options.no_boost_src: options.no_boost_src = True + if sys.platform.startswith('linux') and '.el7.' in platform.platform(): + options.no_boost_src = False if options.use_conda is None: options.use_conda = ''