add note to GNUmakefile that we append instdir instead of prepending for a good reason

This commit is contained in:
Zooko O'Whielacronx 2007-04-30 19:17:51 -07:00
parent e8c5795e36
commit 3b17e2a579

View File

@ -35,6 +35,10 @@ else
endif
endif
# Append instdir/lib instead of prepending it so that people can override
# things from lib with alternate packages of their choosing by setting their
# PYTHONPATH.
ifneq ($(PYTHONPATH),)
PYTHONPATH := "$(PYTHONPATH)$(PATHSEP)$(INSTDIR)/lib"
else