Merge pull request #139 from excessivedemon/master

Fix for android.library_references path issue
This commit is contained in:
Mathieu Virbel 2014-09-22 20:45:58 +02:00
commit a7c5ccc683

View file

@ -647,7 +647,7 @@ class TargetAndroid(Target):
self.buildozer.error('Invalid library reference (path not found): {}'.format(cref))
exit(1)
# get a relative path from the project file
ref = relpath(ref, dist_dir)
ref = relpath(ref, realpath(dist_dir))
# ensure the reference exists
references.append(ref)