From ae9555b4a65ff772301da353086087651e66b946 Mon Sep 17 00:00:00 2001 From: Alex Lin Date: Thu, 7 Jul 2016 13:41:54 -0500 Subject: [PATCH] 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 --- libexec/trick/convert_swig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libexec/trick/convert_swig b/libexec/trick/convert_swig index c6260901..c537ee62 100755 --- a/libexec/trick/convert_swig +++ b/libexec/trick/convert_swig @@ -260,6 +260,8 @@ sub process_file() { last ; } } + } else { + $file_name = $temp_file_name ; } foreach my $i ( @swig_exclude_dirs ) {