Merge branch 'master' of opencircuitdesign.com:/home/tim/gitsrc/open_pdks
Merging back from the original, which is a headache. . .
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