summaryrefslogtreecommitdiff
path: root/dh_strip
diff options
context:
space:
mode:
authorjoey <joey>2001-02-03 00:38:19 +0000
committerjoey <joey>2001-02-03 00:38:19 +0000
commit6648880ed40453cd7df9ad8a6a73e58e455dad92 (patch)
treee6e99f36b6e20e03ed72d823c0630f288eb82517 /dh_strip
parenteebc4a40e8f8aeebefef2cfeda2731b33d3ff1b0 (diff)
r416: better message
wrapping
Diffstat (limited to 'dh_strip')
-rwxr-xr-xdh_strip6
1 files changed, 4 insertions, 2 deletions
diff --git a/dh_strip b/dh_strip
index b1501920..7c851e29 100755
--- a/dh_strip
+++ b/dh_strip
@@ -62,11 +62,13 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
foreach (@shared_libs) {
# Note that all calls to strip on shared libs
# *must* inclde the --strip-unneeded.
- doit("strip","--remove-section=.comment","--remove-section=.note","--strip-unneeded",$_);
+ doit("strip","--remove-section=.comment",
+ "--remove-section=.note","--strip-unneeded",$_);
}
foreach (@executables) {
- doit("strip","--remove-section=.comment","--remove-section=.note",$_);
+ doit("strip","--remove-section=.comment",
+ "--remove-section=.note",$_);
}
foreach (@static_libs) {