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 vstinner
Recipients eric.araujo, nils, tarek, vstinner, zegreek
Date 2010-11-01.21:22:16
SpamBayes Score 3.0642934e-07
Marked as misclassified No
Message-id <1288646538.49.0.783891079831.issue6011@psf.upfronthosting.co.za>
In-reply-to
Content
I reproduced the problem with the following commands:

cd py3k
export LANG=C
export LC_ALL=C
make distclean
./configure --with-pydebug --prefix=/home/haypo/tmp/py3ké
make

It looks like the problem is that srcdir environment variable of Makefile.pre is ".". In this case, VPATH environment variable is not set and so calculate_path() fails to retrieve the source code directory.

configure script contains a strange comment (whereas i cannot find "VPATH" in configure.in):

# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
# trailing colons and then remove the whole line if VPATH becomes empty
# (actually we leave an empty line to preserve line numbers).
History
Date User Action Args
2010-11-01 21:22:18vstinnersetrecipients: + vstinner, tarek, eric.araujo, zegreek, nils
2010-11-01 21:22:18vstinnersetmessageid: <1288646538.49.0.783891079831.issue6011@psf.upfronthosting.co.za>
2010-11-01 21:22:16vstinnerlinkissue6011 messages
2010-11-01 21:22:16vstinnercreate