diff options
-rwxr-xr-x | strip_files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strip_files b/strip_files index b41a91b..53d87ee 100755 --- a/strip_files +++ b/strip_files @@ -21,7 +21,7 @@ my @exclude_files = (split(' ', $ENV{EXCLUDE_FROM_STRIP}), "/usr/lib/debug"); # TODO: we should write a binding for libfile... sub expensive_test { my ($file) = @_; - my $type = `file $file`; + my $type = `file -- $file`; } sub testfile() { |