- fix linux project file handling in case where a different PREFIX is specified
This commit is contained in:
parent
b958d2d1d4
commit
2717d25483
1 changed files with 3 additions and 2 deletions
|
@ -666,8 +666,9 @@ def update_linux_project_files():
|
||||||
if f.endswith(".cpp") or f.endswith(".c"):
|
if f.endswith(".cpp") or f.endswith(".c"):
|
||||||
source_content.append(" ../%s \\" % os.path.join(root, f))
|
source_content.append(" ../%s \\" % os.path.join(root, f))
|
||||||
for sd in subFolders:
|
for sd in subFolders:
|
||||||
headers_content, source_content = \
|
if sd != "uninstall-":
|
||||||
iterate_dirs(headers_content, source_content, sd)
|
headers_content, source_content = \
|
||||||
|
iterate_dirs(headers_content, source_content, sd)
|
||||||
return headers_content, source_content
|
return headers_content, source_content
|
||||||
|
|
||||||
for d in directories:
|
for d in directories:
|
||||||
|
|
Loading…
Reference in a new issue