Lines Matching full:sysconfig
33 # For some systems, sysconfig exists, but has the wrong paths,
35 # and for older versions try distutils.sysconfig first. For newer
36 # versions>=3.10, where distutils.sysconfig is deprecated, use
37 # sysconfig first and then attempt the other one.
47 if test "$py_distutils_first" = "yes"; then m="distutils"; else m="sysconfig"; fi
59 if test "$py_distutils_first" = "yes"; then m2="sysconfig"; else m2="distutils"; fi
75 if test "$sysconfig_module" = "distutils"; then sysconfig_module="distutils.sysconfig"; fi
82 if test "$sysconfig_module" = "sysconfig"; then
83 python_path=`$PYTHON -c 'import sysconfig; \
84 print(sysconfig.get_path("include"));'`
86 python_path=`$PYTHON -c "import distutils.sysconfig; \
87 print(distutils.sysconfig.get_python_inc());"`
118 if test "$sysconfig_module" = "sysconfig"; then
119 PYTHON_SITE_PKG=`$PYTHON -c 'import sysconfig; \
120 print(sysconfig.get_path("platlib"));'`
122 PYTHON_SITE_PKG=`$PYTHON -c "import distutils.sysconfig; \
123 print(distutils.sysconfig.get_python_lib(1,0));"`