I am trying to install lldb in Linux to my home directory on my system (I do not have root access) and I have run into a problem with a step that was trying to create a subdirectory in /usr/lib/python2.6/site-packages
I found the line in the Makefile that sets this variable and it is:
PYTHON_DEST_DIR := $(DESTDIR)/$(call realpath,$(shell python -c 'import sys; print sys.exec_prefix')/lib/python$(shell python -c 'import sys; print sys.version[:3]')/site-packages)
So it's not something that I can specify in the configure sciprt, but I can change the Makefile to cause the files to be copied to some location in my home directory. But I don't really understand what site-packages
are or how I would specify that python should look in some alternative location for these files. Is this something that is possible or are there any workarounds for what I want to do?