Handle relative paths for "lib_extra_dirs" // Resolve #749

This commit is contained in:
Ivan Kravets
2016-08-16 13:02:57 +03:00
parent 8d8a0efdb9
commit 2a3a12b816
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -81,7 +81,7 @@ class LibBuilderBase(object): # pylint: disable=too-many-instance-attributes
def __init__(self, env, path):
self.env = env.Clone()
self.envorigin = env.Clone()
self.path = env.subst(path)
self.path = realpath(env.subst(path))
self._manifest = self.load_manifest()
self._is_dependent = False
self._depbuilders = tuple()