Ned Deily added the comment:

You did not provide enough information to determine exactly what went wrong in 
your build but you are likely running in an environment with non-standard 
permissions (umask, root, ACLs, etc.).  Note that the failure occurs when the 
main Makefile rule to build Include/graminit.h ($(GRAMMAR_H): around 
Makefile.pre.in:669) gets a permission denied error trying to execute the pgen 
executable (Parser/pgen) created in the previously executed rule ($(PGEN): 
Makefile.pre.in:677). Most likely the executable lacks executable permission.  
Check the permissions on Parser/pgen to determine if that was so and determine 
why the cc -o build recipe was unable to set the normal executable permissions 
on it or why it was subsequently unable to be executed by make.

----------
nosy: +ned.deily
resolution:  -> works for me
stage:  -> committed/rejected
status: open -> pending

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18008>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to