emccalib.tcl: ignore LIB: hal files

as they should not include tunable items
Signed-off-by: Dewey Garrett <dgarrett@panix.com>
This commit is contained in:
Dewey Garrett 2015-04-17 16:39:03 -07:00
parent d95dd4e1fd
commit 2f78543991

View file

@ -172,6 +172,10 @@ proc makeIniTune {} {
#puts "af: [array get af]" #puts "af: [array get af]"
foreach fname $halfilelist { foreach fname $halfilelist {
if {[string first LIB: $fname] != -1} {
# LIB: files are not candidates tunable items
continue
}
$haltext config -state normal $haltext config -state normal
$haltext delete 1.0 end $haltext delete 1.0 end
if {[catch {open $fname} programin]} { if {[catch {open $fname} programin]} {