* Evgeni Golov <[email protected]>, 2010-10-12, 15:38:
I have changed this to PYTHONPATH=../build/lib.*-*-$(firstword
$(PYVERS))
and it works on my machine.
This would set PYTHONPATH to "PYTHONPATH=../build/lib.*-*-2.6/"
(literally). Doesn't look good.
You probably want something like:
PYTHONPATH=../$(wildcard build/lib.*-*-$(firstword $(PYVERS)))/
or
PYTHONPATH=../$$(ls -d build/lib.*-*-$(firstword $(PYVERS)))/
wildcard seems not to work, no idea why
Oh, right - that's because it's evaluated too early, i.e. before the
actual build directory is created.
--
Jakub Wilk
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]