Message118369
The cause for the failure seems to be a bug in the dreaded _parse_makefile(). When you give it a Makefile such as:
LDFLAGS=-foo
PY_LDFLAGS=-bar
LDSHARED=$(CC) -shared ${LDFLAGS} $(PY_LDFLAGS)
It outputs the following variables:
{'CC': '',
'LDFLAGS': '-foo',
'LDSHARED': '-shared ${LDFLAGS} -bar',
'PY_LDFLAGS': '-bar'}
That is, ${LDFLAGS} isn't expanded.
However, since the Makefile now explicitly appends PY_LDFLAGS to LDSHARED, we could also stop doing so in ./configure. |
|
Date |
User |
Action |
Args |
2010-10-11 15:34:47 | pitrou | set | recipients:
+ pitrou, loewis, brett.cannon, georg.brandl, jyasskin, tarek, eric.araujo, lukasz.langa |
2010-10-11 15:34:47 | pitrou | set | messageid: <1286811287.76.0.200161520558.issue9437@psf.upfronthosting.co.za> |
2010-10-11 15:34:44 | pitrou | link | issue9437 messages |
2010-10-11 15:34:43 | pitrou | create | |
|