summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérôme Pouiller <jezz@sysmic.org>2016-12-20 14:46:27 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-04-01 18:31:19 +0200
commit95ba0bb7e8d9d18b70e0216b931f64878bf41a2e (patch)
tree207eb0b1f03b2baa8b33b9bebf91ebcaa8e7a8a1
parent8b014560f6fff100e89600f42f6882da0dcfe5b7 (diff)
downloadbuildroot-95ba0bb7e8d9d18b70e0216b931f64878bf41a2e.tar.gz
buildroot-95ba0bb7e8d9d18b70e0216b931f64878bf41a2e.zip
python3: remove full path from .pyc
.pyc files include path to source .py file. This patch changes the way `pycompile.py' is launched in order to only keep the part relative to $TARGET_DIR. This work was sponsored by `BA Robotic Systems'. Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Reviewed-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/python3/python3.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/package/python3/python3.mk b/package/python3/python3.mk
index 6189aa8c7b..74f81167ff 100644
--- a/package/python3/python3.mk
+++ b/package/python3/python3.mk
@@ -247,9 +247,10 @@ endif
define PYTHON3_CREATE_PYC_FILES
$(PYTHON3_FIX_TIME)
PYTHONPATH="$(PYTHON3_PATH)" \
- $(HOST_DIR)/usr/bin/python$(PYTHON3_VERSION_MAJOR) \
- support/scripts/pycompile.py $(if $(BR2_REPRODUCIBLE),--force) \
- $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)
+ cd $(TARGET_DIR) && $(HOST_DIR)/usr/bin/python$(PYTHON3_VERSION_MAJOR) \
+ $(TOPDIR)/support/scripts/pycompile.py \
+ $(if $(BR2_REPRODUCIBLE),--force) \
+ usr/lib/python$(PYTHON3_VERSION_MAJOR)
endef
ifeq ($(BR2_PACKAGE_PYTHON3_PYC_ONLY)$(BR2_PACKAGE_PYTHON3_PY_PYC),y)
OpenPOWER on IntegriCloud