From ebe8ea64c6dbd561ddcd6e001e73428880337580 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Fri, 11 Jun 2021 11:47:35 +0200 Subject: [PATCH] Freeze version of RapidJSON to build under SL7. * Change: In bootstrap/socInstaller.py, freeze the version of RapidJSON to commmit #b1a4d91 as later ones have problems building their doc under SL7. --- bootstrap/socInstaller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap/socInstaller.py b/bootstrap/socInstaller.py index c80a658c..e0d2d26b 100755 --- a/bootstrap/socInstaller.py +++ b/bootstrap/socInstaller.py @@ -593,8 +593,8 @@ try: for gitSupport in gitSupports: if conf.rmSource: gitSupport.removeLocalRepo() gitSupport.clone() - #if gitSupport.url.endswith('rapidjson'): - # gitSupport.checkout( 'a1c4f32' ) + if gitSupport.url.endswith('rapidjson'): + gitSupport.checkout( 'b1a4d91' ) if conf.doAlliance: if conf.rmSource: gitAlliance.removeLocalRepo()