Remove debug code

This commit is contained in:
Ivan Kravets
2016-02-26 01:10:48 +02:00
parent 1c481e0840
commit 99ddea6906
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,8 @@ PlatformIO 2.0
2.8.5 (2016-02-??)
~~~~~~~~~~~~~~~~~~
* Improved handling of String-based ``CPPDEFINES`` passed to extra ``build_flags``
(`issue #526 <https://github.com/platformio/platformio/issues/526>`_)
* Fixed issue with incorrect handling of user's build flags where the base flags
were passed after user's flags to GCC compiler
(`issue #528 <https://github.com/platformio/platformio/issues/528>`_)

View File

@ -100,7 +100,6 @@ def ProcessFlags(env, flags):
if not f:
continue
parsed_flags = env.ParseFlags(str(f))
print parsed_flags
for flag in parsed_flags.pop("CPPDEFINES"):
if not isinstance(flag, list):
env.Append(CPPDEFINES=flag)