diff options
-rwxr-xr-x | strip_files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strip_files b/strip_files index e681923..743e426 100755 --- a/strip_files +++ b/strip_files @@ -16,7 +16,7 @@ use File::Find; # for use by File::Find. It'll fill the following 3 arrays with anything # it finds: my (@shared_libs, @executables, @static_libs); -my @exclude_files = split(' ',$ENV{EXCLUDE_FROM_STRIP}); +my @exclude_files = (split(' ',$ENV{EXCLUDE_FROM_STRIP}),"/usr/lib/debug"); sub testfile { |