Update buildroot 2020.02.01 (#622)

* Update buildroot 2020.02.01

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix LN

* Fix wpa

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix lint

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* fix-network

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix script

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
This commit is contained in:
Pascal Vizeli
2020-04-16 20:03:01 +02:00
committed by GitHub
parent 0c2b5aff65
commit 5a6678147e
6201 changed files with 73436 additions and 70757 deletions

View File

@@ -0,0 +1,31 @@
Use print as a function in SConstruct build file for Py3 compatibility.
This allow to run SCons on Python 3
[Upstream status: https://github.com/codehero/benejson/pull/12]
Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
---
benejson/SConscript | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/benejson/SConscript b/benejson/SConscript
index b7c5d10..80b4875 100644
--- a/benejson/SConscript
+++ b/benejson/SConscript
@@ -9,11 +9,11 @@ lib_env = lib_env.Clone()
conf = Configure(lib_env)
if not conf.CheckFunc("stpcpy"):
- print "Did not find stpcpy(), using bnj local version"
+ print("Did not find stpcpy(), using bnj local version")
conf.env.Append(CPPDEFINES = ["-Dstpcpy=bnj_local_stpcpy"])
if not conf.CheckFunc("stpncpy"):
- print "Did not find stpncpy(), using bnj local version"
+ print("Did not find stpncpy(), using bnj local version")
conf.env.Append(CPPDEFINES = ["-Dstpncpy=bnj_local_stpncpy"])
lib_env = conf.Finish()
--
2.21.0