This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xiang.zhang
Recipients ned.deily, xiang.zhang
Date 2016-09-03.17:18:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472923093.9.0.208498000051.issue27950@psf.upfronthosting.co.za>
In-reply-to
Content
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?
History
Date User Action Args
2016-09-03 17:18:13xiang.zhangsetrecipients: + xiang.zhang, ned.deily
2016-09-03 17:18:13xiang.zhangsetmessageid: <1472923093.9.0.208498000051.issue27950@psf.upfronthosting.co.za>
2016-09-03 17:18:13xiang.zhanglinkissue27950 messages
2016-09-03 17:18:13xiang.zhangcreate