Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | From 66765522b634952346f1a3ab7d00c7222a1f9361 Mon Sep 17 00:00:00 2001 |
| 2 | Message-Id: <66765522b634952346f1a3ab7d00c7222a1f9361.1347419597.git.dvhart@linux.intel.com> |
| 3 | From: Darren Hart <dvhart@linux.intel.com> |
| 4 | Date: Tue, 11 Sep 2012 15:19:30 -0700 |
| 5 | Subject: [PATCH 1/2] rt-tests: Allow for user-specified PYLIB |
| 6 | |
| 7 | Upstream-Status: Submitted |
| 8 | |
| 9 | Allow users (build systems) to specify PYLIB. This allows for a |
| 10 | cross-build-system to specify the target PYLIB rather than the host |
| 11 | PYLIB. |
| 12 | |
| 13 | Signed-off-by: Darren Hart <dvhart@linux.intel.com> |
| 14 | CC: Clark Williams <williams@redhat.com> |
| 15 | CC: John Kacur <jkacur@redhat.com> |
| 16 | --- |
| 17 | Makefile | 2 +- |
| 18 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 19 | |
| 20 | diff --git a/Makefile b/Makefile |
| 21 | index 3a82407..61e2f9f 100644 |
| 22 | --- a/Makefile |
| 23 | +++ b/Makefile |
| 24 | @@ -23,7 +23,7 @@ endif |
| 25 | CFLAGS ?= -D_GNU_SOURCE -Wall -Wno-nonnull -Isrc/include |
| 26 | LDFLAGS ?= |
| 27 | |
| 28 | -PYLIB := $(shell python -c 'import distutils.sysconfig; print distutils.sysconfig.get_python_lib()') |
| 29 | +PYLIB ?= $(shell python -c 'import distutils.sysconfig; print distutils.sysconfig.get_python_lib()') |
| 30 | |
| 31 | ifndef DEBUG |
| 32 | CFLAGS += -O2 |
| 33 | -- |
| 34 | 1.7.11.4 |
| 35 | |