Kaydet (Commit) 13417320 authored tarafından Eray Özkural's avatar Eray Özkural

* workaround for .a issue

üst 5e39dbf0
......@@ -553,6 +553,7 @@ class Builder:
fold = old_pkg.files.list
fold.sort(lambda x,y : cmp(x.path,y.path))
fnew.sort(lambda x,y : cmp(x.path,y.path))
if len(fnew) != len(fold):
changed = True
else:
......@@ -563,6 +564,9 @@ class Builder:
changed = True
break
else:
#FIXME: workaround for .a issue, skip .a files
if fn.path.endswith('.a') and fn.type=='library':
continue
if fo.hash != fn.hash:
changed = True
break
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment