diff options
-rwxr-xr-x | check-multiarch-files | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/check-multiarch-files b/check-multiarch-files index 9d200f9..6611774 100755 --- a/check-multiarch-files +++ b/check-multiarch-files @@ -32,8 +32,8 @@ while (<STDIN>) { if (/.+[-_]config/ && $file_magic =~ /shell script/) { my $options; foreach (cat_($_)) { - foreach my $opt (qw(cflags libs ldflags cppflags libdir)) { - $options .= " --$opt" if /(\[--$opt\]|--$opt\s+[\#\[])/; + foreach my $opt (qw(cflags libs ldflags cppflags libdir libtool)) { + $options .= " --$opt" if /(\[--$opt\]|--$opt\s+([\#\[]|display))/; } } # run the script to find out any libdir dependent flags |