diff options
Diffstat (limited to 'create_lts.py')
-rwxr-xr-x | create_lts.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/create_lts.py b/create_lts.py index d5d7b28c..56170806 100755 --- a/create_lts.py +++ b/create_lts.py @@ -96,6 +96,13 @@ def main(argv): # Replacement directives go here. ReplaceStringsInFile( + 'absl/base/config.h', { + '#undef ABSL_LTS_RELEASE_VERSION': + '#define ABSL_LTS_RELEASE_VERSION {}'.format(datestamp), + '#undef ABSL_LTS_RELEASE_PATCH_LEVEL': + '#define ABSL_LTS_RELEASE_PATCH_LEVEL 0' + }) + ReplaceStringsInFile( 'absl/base/options.h', { '#define ABSL_OPTION_USE_INLINE_NAMESPACE 0': '#define ABSL_OPTION_USE_INLINE_NAMESPACE 1', |