< Luke-Jr>
cfields: PYTHONPATH isn't being exported by make. I'm coming up blank trying to find any autoconf standard way to do this
< berndj>
Luke-Jr, does 'export PYTHONPATH' in Makefile.am not work?
< Luke-Jr>
berndj: I think that would be a GNU-ism - is that how it's supposed to be done?
< berndj>
Luke-Jr, judging by what automake itself does, you could take the pattern 'PYTHONPATH=/blah; python foo.py'; could be a bit messy if you need to do that often
< berndj>
maybe something like PATHED_PYTHON = PYTHONPATH=$(PYTHONPATH); $(PYTHON) - and then call it as $(PATHED_PYTHON) foo.py?
< Luke-Jr>
hmm
< Luke-Jr>
rather not have to decide which python interpreter to use
< berndj>
it's just an AM_PATH_PYTHON away. but you could just run it directly as 'python'
< berndj>
(AM_PATH_PYTHON is for putting into configure.ac, not for Makefile.am)