Trick model files found in external libraries are not being included correctly

Found that the list of swig files we should expect from external libraries
was incorrectly cleared before it was being used.  This still allows the
sim to compile, but no information about the models in the library are
available in the input file.

refs #179
This commit is contained in:
Alex Lin 2016-02-09 11:13:09 -06:00
parent 2b30a92342
commit 2ca4b72cee

View File

@ -117,7 +117,6 @@ sub read_files_to_process() {
open FILE, "build/ICG_ext_lib" or die 'could not open build/ICG_ext_lib' ; open FILE, "build/ICG_ext_lib" or die 'could not open build/ICG_ext_lib' ;
my @unfiltered_ext_lib_files = <FILE> ; my @unfiltered_ext_lib_files = <FILE> ;
@unfiltered_ext_lib_files = <FILE> ;
close FILE ; close FILE ;
chomp @unfiltered_ext_lib_files ; chomp @unfiltered_ext_lib_files ;