Made another correction to the create_lib_library python script, due to the "flexible" allowed syntax rules for whitespace in liberty files.
diff --git a/common/create_lib_library.py b/common/create_lib_library.py index 0170969..a066094 100755 --- a/common/create_lib_library.py +++ b/common/create_lib_library.py
@@ -92,8 +92,8 @@ for lline in llines: if headerdone: if not headerseen: - ltok = lline.split() - if len(ltok) == 0 or not ltok[0] == 'cell': + ltok = lline.split('(') + if len(ltok) == 0 or not ltok[0].strip() == 'cell': continue else: headerseen = True