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 skrah
Recipients BreamoreBoy, benjamin.peterson, skrah
Date 2010-08-08.20:03:34
SpamBayes Score 4.732766e-05
Marked as misclassified No
Message-id <1281297816.3.0.0605153134839.issue3539@psf.upfronthosting.co.za>
In-reply-to
Content
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)
History
Date User Action Args
2010-08-08 20:03:36skrahsetrecipients: + skrah, benjamin.peterson, BreamoreBoy
2010-08-08 20:03:36skrahsetmessageid: <1281297816.3.0.0605153134839.issue3539@psf.upfronthosting.co.za>
2010-08-08 20:03:34skrahlinkissue3539 messages
2010-08-08 20:03:34skrahcreate