Commit 8f8cdcd7 authored by Pawel Szostek's avatar Pawel Szostek

Add non-dependable files at the beg. of .xise list

parent fa3045f0
......@@ -148,6 +148,7 @@ def make_dependency_sorted_list(fileset, purge_unused=True):
filelist = list(fileset)
dependable = [file for file in filelist if isinstance(file, DepFile)]
non_depednable = [file for file in filelist if not isinstance(file, DepFile)]
ret = sorted(dependable, cmp=compare_dep_files)
ret.extend(non_depednable)
ret = non_depednable
dependable_sorted = sorted(dependable, cmp=compare_dep_files)
ret.extend(dependable_sorted)
return ret
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