Temporary enable LDF_MODE=2 before refactoring

This commit is contained in:
Ivan Kravets
2016-08-31 20:28:26 +03:00
parent 013c675bc4
commit 86aa7ad692
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
import sys import sys
VERSION = (3, 0, "0b4") VERSION = (3, 0, "0b5")
__version__ = ".".join([str(s) for s in VERSION]) __version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio" __title__ = "platformio"

View File

@ -155,7 +155,7 @@ class LibBuilderBase(object):
@property @property
def lib_ldf_mode(self): def lib_ldf_mode(self):
return int(self.env.get("LIB_LDF_MODE", 1)) return int(self.env.get("LIB_LDF_MODE", 2))
@property @property
def depbuilders(self): def depbuilders(self):