aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Lepied <flepied@mandriva.com>2003-06-20 08:08:55 +0000
committerFrederic Lepied <flepied@mandriva.com>2003-06-20 08:08:55 +0000
commit80c4d58f1159b0e4027203469536287363bdffab (patch)
tree15b6fe21eb62b352532096cc6a71bf13461708b6
parentecdcf29f1d1df199b97160d4596858e27b14e076 (diff)
downloadspec-helper-80c4d58f1159b0e4027203469536287363bdffab.tar
spec-helper-80c4d58f1159b0e4027203469536287363bdffab.tar.gz
spec-helper-80c4d58f1159b0e4027203469536287363bdffab.tar.bz2
spec-helper-80c4d58f1159b0e4027203469536287363bdffab.tar.xz
spec-helper-80c4d58f1159b0e4027203469536287363bdffab.zip
don't strip /usr/lib/debug files (Götz Waschk)
-rwxr-xr-xstrip_files2
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 {