diff options
author | Christian Heimes <christian@python.org> | 2021-11-18 13:40:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-18 13:40:01 (GMT) |
commit | e4bb22fabbea72776b377733047e0f32e0388059 (patch) | |
tree | 786fc0caaec75a2b0bae8c94da87d6b386179f17 /configure | |
parent | 21fa7a3e8f99a1a32467f85c877e40cbdafa9da7 (diff) | |
download | cpython-e4bb22fabbea72776b377733047e0f32e0388059.zip cpython-e4bb22fabbea72776b377733047e0f32e0388059.tar.gz cpython-e4bb22fabbea72776b377733047e0f32e0388059.tar.bz2 |
bpo-45573: Add Modules/Setup.stdlib with conditional modules (GH-29615)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -19437,6 +19437,8 @@ $as_echo "$py_cv_module__decimal" >&6; } # generate output files ac_config_files="$ac_config_files Makefile.pre Misc/python.pc Misc/python-embed.pc Misc/python-config.sh" +ac_config_files="$ac_config_files Modules/Setup.stdlib" + ac_config_files="$ac_config_files Modules/ld_so_aix" cat >confcache <<\_ACEOF @@ -20172,6 +20174,7 @@ do "Misc/python.pc") CONFIG_FILES="$CONFIG_FILES Misc/python.pc" ;; "Misc/python-embed.pc") CONFIG_FILES="$CONFIG_FILES Misc/python-embed.pc" ;; "Misc/python-config.sh") CONFIG_FILES="$CONFIG_FILES Misc/python-config.sh" ;; + "Modules/Setup.stdlib") CONFIG_FILES="$CONFIG_FILES Modules/Setup.stdlib" ;; "Modules/ld_so_aix") CONFIG_FILES="$CONFIG_FILES Modules/ld_so_aix" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; |