Message 274316 - Python tracker (original) (raw)
Every time running make I can get such messages:
Substitution happens here, as the completely-expanded BINDIR
is not available in configure
sed -e "s,@EXENAME@,/usr/local/bin/python3.6m," < ./Misc/python-config.in >python-config.py
Replace makefile compat. variable references with shell script compat. ones; ->
sed -e 's,$(([A-Za-z0-9_]*)),${\1},g' < Misc/python-config.sh >python-config
On Darwin, always use the python version of the script, the shell
version doesn't use the compiler customizations that are provided
in python (_osx_support.py).
if test uname -s
= Darwin; then
cp python-config.py python-config;
fi
and
./python -E -S -m sysconfig --generate-posix-vars ;
if test $? -ne 0 ; then
echo "generate-posix-vars failed" ;
rm -f ./pybuilddir.txt ;
exit 1 ;
fi
I think the comment and if part has no need to prompt to users.
Also running some recipes regarding coverage like run_profile_task will prompt
: # FIXME: can't run for a cross build
Need to get a fix for this?