Allow users (build systems) to specify PYLIB. This allows for a cross-build-system to specify the target PYLIB rather than the host PYLIB. Signed-off-by: Darren Hart <dvhart@xxxxxxxxxxxxxxx> CC: Clark Williams <williams@xxxxxxxxxx> CC: John Kacur <jkacur@xxxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3a82407..61e2f9f 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ endif CFLAGS ?= -D_GNU_SOURCE -Wall -Wno-nonnull -Isrc/include LDFLAGS ?= -PYLIB := $(shell python -c 'import distutils.sysconfig; print distutils.sysconfig.get_python_lib()') +PYLIB ?= $(shell python -c 'import distutils.sysconfig; print distutils.sysconfig.get_python_lib()') ifndef DEBUG CFLAGS += -O2 -- 1.7.11.4 -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html