diff options
author | Christian Heimes <christian@python.org> | 2022-06-27 05:52:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 05:52:06 (GMT) |
commit | 71868a0066a90519ccc6aeb75673ae882aaa03f0 (patch) | |
tree | 38feb32fba4753596c8adab08bc20aedbc1f1d7c /Makefile.pre.in | |
parent | d71f5adc41569c2d626552269797e0545fc9122c (diff) | |
download | cpython-71868a0066a90519ccc6aeb75673ae882aaa03f0.zip cpython-71868a0066a90519ccc6aeb75673ae882aaa03f0.tar.gz cpython-71868a0066a90519ccc6aeb75673ae882aaa03f0.tar.bz2 |
gh-90005: Rename MODULE_EGG variable to MODULE_EGG_STATE (GH-94301)
It makes it easier to look for module states in sysconfig without
special casing suffixes "_CFLAGS", "_DEPS", "_LDFLAGS", "_OBJS",
and "CTYPES_MALLOC_CLOSURE".
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index c0333ce..5af9efd 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -222,7 +222,7 @@ OPENSSL_RPATH=@OPENSSL_RPATH@ # * missing: build dependency is missing # * disabled: module is disabled # * n/a: module is not available on the current platform -# MODULE_EGG=yes # yes, missing, disabled, n/a +# MODULE_EGG_STATE=yes # yes, missing, disabled, n/a # MODULE_EGG_CFLAGS= # MODULE_EGG_LDFLAGS= @MODULE_BLOCK@ |