Corrected an error in the foundry_install script that duplicates the "lef read" line in the script to generate views using magic, resulting in duplicate macros in the LEF library file.
diff --git a/VERSION b/VERSION index c8d4d5a..5039e3d 100644 --- a/VERSION +++ b/VERSION
@@ -1 +1 @@ -1.0.310 +1.0.311
diff --git a/common/foundry_install.py b/common/foundry_install.py index 0af840a..fd88966 100755 --- a/common/foundry_install.py +++ b/common/foundry_install.py
@@ -1668,9 +1668,6 @@ # original source LEF file. lefdest = lefsrclibdir + '/' if have_lefanno else '' - for leffile in leffiles: - if have_lefanno: - print('lef read ' + lefsrclibdir + '/' + leffile, file=ofile) for lefmacro in lefmacros: print('if {[cellname list exists ' + lefmacro + '] != 0} {', file=ofile) print(' load ' + lefmacro, file=ofile)