I am trying to install lldb on Linux in my home directory on my system (I do not have root access) and I have encountered a problem with the step that tried to create a subdirectory in/usr/lib/python2.6/site-packages
I found a line in the Makefile that sets this variable, and it:
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 this is not something I can specify in configure sciprt, but I can change the Makefile so that the files are copied to some place in my home directory. But I don’t quite understand what it is site-packagesor how I would point out that python should look in some alternative place for these files. Is it possible that this is possible or are there some workarounds for what I want to do?
source
share