[rtems commit] build: Fix format in wscript

Sebastian Huber sebh at rtems.org
Tue Feb 23 09:06:20 UTC 2021


Module:    rtems
Branch:    master
Commit:    3353820be796d7a1cc510c893eee77264d6652d6
Changeset: http://git.rtems.org/rtems/commit/?id=3353820be796d7a1cc510c893eee77264d6652d6

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Tue Feb 23 10:04:51 2021 +0100

build: Fix format in wscript

---

 wscript | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/wscript b/wscript
index 3a2e290..6626faf 100755
--- a/wscript
+++ b/wscript
@@ -726,7 +726,9 @@ class OptionItem(Item):
         print("{} = {}".format(self.data["name"], value))
 
     def _do_append_test_cppflags(self, conf, name, state):
-        conf.env.append_value("TEST_" + name.upper().replace("-", "_") + "_CPPFLAGS", state)
+        conf.env.append_value(
+            "TEST_" + name.upper().replace("-", "_") + "_CPPFLAGS", state
+        )
 
     def _append_test_cppflags(self, conf, cic, value, arg):
         self._do_append_test_cppflags(conf, arg, value)



More information about the vc mailing list