convert_swig puts double double quotes at end of full path includes

When extracting include files full path file names fall through all
of the logic that strips quotes off of the path.  This leads to double
double quotes in the output.  Added an else statement that catches
all other include files and strips the quotes off of pathnames.

refs #267
This commit is contained in:
Alex Lin 2016-07-07 13:41:54 -05:00
parent 6e5beec9e1
commit ae9555b4a6

View File

@ -260,6 +260,8 @@ sub process_file() {
last ; last ;
} }
} }
} else {
$file_name = $temp_file_name ;
} }
foreach my $i ( @swig_exclude_dirs ) { foreach my $i ( @swig_exclude_dirs ) {