forked from platformio/platformio-core
Handle relative paths for "lib_extra_dirs" // Resolve #749
This commit is contained in:
@ -14,7 +14,7 @@
|
||||
|
||||
import sys
|
||||
|
||||
VERSION = (3, 0, "0a4")
|
||||
VERSION = (3, 0, "0a5")
|
||||
__version__ = ".".join([str(s) for s in VERSION])
|
||||
|
||||
__title__ = "platformio"
|
||||
|
@ -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()
|
||||
|
Reference in New Issue
Block a user