mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
25 lines
790 B
Diff
25 lines
790 B
Diff
From 0e89248a96f4f1ec2825b9c14a86b87c6490f04e Mon Sep 17 00:00:00 2001
|
|
From: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
Date: Wed, 6 Sep 2017 21:29:42 -0600
|
|
Subject: [PATCH 4/4] dtoc: python2 compatibility
|
|
|
|
---
|
|
scripts/Makefile.spl | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
|
|
index dd8065d87d..93ed4f00dd 100644
|
|
--- a/scripts/Makefile.spl
|
|
+++ b/scripts/Makefile.spl
|
|
@@ -246,7 +246,7 @@ quiet_cmd_fdtgrep = FDTGREP $@
|
|
$(obj)/$(SPL_BIN).dtb: dts/dt.dtb $(objtree)/tools/fdtgrep FORCE
|
|
$(call if_changed,fdtgrep)
|
|
|
|
-pythonpath = PYTHONPATH=tools
|
|
+pythonpath = PYTHONPATH=tools $(PYTHON)
|
|
|
|
quiet_cmd_dtocc = DTOC C $@
|
|
cmd_dtocc = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ platdata
|
|
--
|
|
2.14.1
|
|
|