blob: 330bec659b7286a66e58afc24c4f5ae66b7377a4 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 60baf9ebf30bed0e2ee3c7c5a74d5b6d50035862 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 Bishop316dfdd2018-06-25 12:45:53 -040020index 8d74cbd..ce4f0a5 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050021--- a/lang/python/Makefile.am
22+++ b/lang/python/Makefile.am
Brad Bishop316dfdd2018-06-25 12:45:53 -040023@@ -91,6 +91,7 @@ install-exec-local:
24 --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