Fixed an issue with broken includes when generating `.clang_complete` and space is used in path // Issue #1873

This commit is contained in:
Ivan Kravets
2018-10-12 23:04:12 +03:00
parent d9dd83e327
commit 0159b1cf7f
3 changed files with 8 additions and 4 deletions

View File

@ -26,6 +26,10 @@ PlatformIO 3.0
* Fixed an issue when ``pio run -t monitor`` always uses first ``monitor_port``
even with multiple environments
(`issue #1841 <https://github.com/platformio/platformio-core/issues/1841>`_)
* Fixed an issue with broken includes when generating ``.clang_complete`` and
space is used in path
(`issue #1873 <https://github.com/platformio/platformio-core/issues/1873>`_)
3.6.0 (2018-08-06)
~~~~~~~~~~~~~~~~~~

View File

@ -1,6 +1,6 @@
% for include in includes:
-I{{include}}
-I"{{include}}"
% end
% for define in defines:
-D{{!define}}
% end
% end

View File

@ -1,6 +1,6 @@
% for include in includes:
-I{{include}}
-I"{{include}}"
% end
% for define in defines:
-D{{!define}}
% end
% end