From adb93716f41a3325f6d590cbfe6ecc8fa27d637e Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 29 Nov 2021 15:50:46 +0300 Subject: Don't save test configuration variables to ~build2 configuration Also stop saving blank lines between groups of options. --- libbuild2/buildfile | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) (limited to 'libbuild2') diff --git a/libbuild2/buildfile b/libbuild2/buildfile index f21be7b..ee320e4 100644 --- a/libbuild2/buildfile +++ b/libbuild2/buildfile @@ -62,28 +62,31 @@ config/cxx{host-config}: config/in{host-config} # For ~build2 we want to keep everything except dist. # # We also remove comment lines which could be confused with preprocessor - # directives by some lesser compilers. + # directives by some lesser compilers and blank lines between groups of + # options which could cause spurious rebuilds when we filter out entire + # groups. # # For ~build2 also filter out config.install.chroot -- we definitely don't - # want it carried through. + # want it carried through. Also filter out variables that control tests + # execution. # # Finally, for both ~host and ~build2 we keep config.config.environment # but strip config.config.hermetic* (we shouldn't be forcing hermiticity # on the users of ~host/~build2; they can decide for themselves if they # want it). # - build2_config = $regex.replace_lines( \ - $config.save(), \ - '^ *(#|(config\.(dist\.|install\.chroot|config\.hermetic))).*$', \ - [null], \ + build2_config = $regex.replace_lines( \ + $config.save(), \ + '^( *(#|(config\.(test[. ]|dist\.|install\.chroot|config\.hermetic))).*|)$', \ + [null], \ return_lines) - # Also preserve config.version and blank lines between groups of options. + # Also preserve config.version. # - host_config = $regex.replace_lines( \ - $build2_config, \ - '^( *config\.(c[. ]|cxx[. ]|cc[.]|bin[.]|config.environment |version ).*|)$', \ - '$&', \ + host_config = $regex.replace_lines( \ + $build2_config, \ + '^ *config\.(c[. ]|cxx[. ]|cc[.]|bin[.]|config.environment |version ).*$', \ + '$&', \ format_no_copy return_lines) } -- cgit v1.1