blob: de1689ec0593ecd53539955f1f4b312992c94876 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From f632148fcc8757bb9a9601a6dab275e88cd309d2 Mon Sep 17 00:00:00 2001
Brad Bishop316dfdd2018-06-25 12:45:53 -04002From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Tue, 30 Jan 2018 15:28:49 +0800
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08004Subject: [PATCH 3/7] Correctly install python modules
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005
6Upstream-Status: Inappropriate [oe-core specific]
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8
9Rebase to 1.9.0
10
11Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Brad Bishop316dfdd2018-06-25 12:45:53 -040012
13Rebase to 1.10.0
14Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -050015---
16 lang/python/Makefile.am | 1 +
17 1 file changed, 1 insertion(+)
18
19diff --git a/lang/python/Makefile.am b/lang/python/Makefile.am
Brad Bishop19323692019-04-05 15:28:33 -040020index 6988faf..36c6f7b 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050021--- a/lang/python/Makefile.am
22+++ b/lang/python/Makefile.am
Brad Bishop19323692019-04-05 15:28:33 -040023@@ -93,6 +93,7 @@ install-exec-local:
Brad Bishop316dfdd2018-06-25 12:45:53 -040024 --build-base="$$(basename "$${PYTHON}")-gpg" \
25 install \
26 --prefix "$(DESTDIR)$(prefix)" \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050027+ --install-lib=$(DESTDIR)${pythondir} \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050028 --verbose ; \
Brad Bishop316dfdd2018-06-25 12:45:53 -040029 done
30
Brad Bishopd7bf8c12018-02-25 22:55:05 -050031--
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800322.7.4
Brad Bishopd7bf8c12018-02-25 22:55:05 -050033