- fix linux project file handling in case where a different PREFIX is specified

This commit is contained in:
kunitoki 2013-03-06 13:13:20 +01:00
parent b958d2d1d4
commit 2717d25483

View file

@ -666,6 +666,7 @@ def update_linux_project_files():
if f.endswith(".cpp") or f.endswith(".c"):
source_content.append(" ../%s \\" % os.path.join(root, f))
for sd in subFolders:
if sd != "uninstall-":
headers_content, source_content = \
iterate_dirs(headers_content, source_content, sd)
return headers_content, source_content