* Tomasz Rybak <bogom...@post.pl>, 2010-10-12, 12:06:
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)))/

--
Jakub Wilk

Attachment: signature.asc
Description: Digital signature

Reply via email to