[issue3539] Problem with pgen make dependencies in certain circumstances
Stefan Krah
report at bugs.python.org
Sun Aug 8 22:03:36 CEST 2010
Stefan Krah <stefan-usenet at bytereef.org> added the comment:
If VPATH is intended to work without doing `make distclean` first
in the root directory, then this is still valid. I'm not sure if
this is the case though (see also issue 1613).
cd py3k/
./configure --with-pydebug
make
mkdir debug
cd debug/
../configure --with-pydebug
make
...
gcc: Parser/tokenizer_pgen.o: No such file or directory
gcc: Parser/printgrammar.o: No such file or directory
gcc: Parser/pgenmain.o: No such file or directory
make: *** [Parser/pgen] Error 1
cd ../
make distclean
cd debug/
make # (works now)
----------
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3539>
_______________________________________
More information about the Python-bugs-list
mailing list