Message120178
| 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:18 | vstinner | set | recipients:
+ vstinner, tarek, eric.araujo, zegreek, nils |
| 2010年11月01日 21:22:18 | vstinner | set | messageid: <1288646538.49.0.783891079831.issue6011@psf.upfronthosting.co.za> |
| 2010年11月01日 21:22:16 | vstinner | link | issue6011 messages |
| 2010年11月01日 21:22:16 | vstinner | create |
|