Skip to content
Snippets Groups Projects
Commit 469c1d5e authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Write lib order on single line in <lib_name>_lib_ordert.txt file.

parent d1a8f5a0
No related branches found
No related tags found
No related merge requests found
...@@ -152,7 +152,7 @@ class HdlConfig: ...@@ -152,7 +152,7 @@ class HdlConfig:
filePathName = os.path.join(file_path, file_name) filePathName = os.path.join(file_path, file_name)
with open(filePathName, 'w') as fp: with open(filePathName, 'w') as fp:
for lib in lib_order: for lib in lib_order:
fp.write('%s\n' % lib) fp.write('%s ' % lib)
if __name__ == '__main__': if __name__ == '__main__':
# Read the dictionary info from all HDL tool and library configuration files in the current directory and the sub directories # Read the dictionary info from all HDL tool and library configuration files in the current directory and the sub directories
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment