mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
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:
parent
6e5beec9e1
commit
ae9555b4a6
@ -260,6 +260,8 @@ sub process_file() {
|
||||
last ;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$file_name = $temp_file_name ;
|
||||
}
|
||||
|
||||
foreach my $i ( @swig_exclude_dirs ) {
|
||||
|
Loading…
Reference in New Issue
Block a user