]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
ef431cd69a4272fcc7e968f80460022b6274877f
[thirdparty/openembedded/openembedded-core-contrib.git] /
1 From 3b9b9b6ac033b44b3864abb1296fce1e19a2b622 Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex.kanavin@gmail.com>
3 Date: Wed, 23 May 2018 21:20:35 +0300
4 Subject: [PATCH] Add a possibility to specify where python modules are
5 installed
6
7 Upstream-Status: Inappropriate [oe-core specific to solve multilib use case]
8 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
9 ---
10 Makefile | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/Makefile b/Makefile
14 index 82dfb1b4..4968989a 100644
15 --- a/Makefile
16 +++ b/Makefile
17 @@ -984,7 +984,7 @@ endif
18 ifeq ($(PYTHON_BINDINGS),1)
19 install_python: libbtrfsutil_python
20 $(Q)cd libbtrfsutil/python; \
21 - $(PYTHON) setup.py install --skip-build $(if $(DESTDIR),--root $(DESTDIR)) --prefix $(prefix)
22 + $(PYTHON) setup.py install --skip-build $(if $(DESTDIR),--root $(DESTDIR)) --prefix $(prefix) --install-lib=$(PYTHON_SITEPACKAGES_DIR)
23
24 .PHONY: install_python
25 endif