From: joey Date: Sat, 3 Feb 2001 00:38:19 +0000 (+0000) Subject: r416: better message X-Git-Tag: version_2.0.101~183 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6648880ed40453cd7df9ad8a6a73e58e455dad92;p=debhelper.git r416: better message wrapping --- diff --git a/dh_strip b/dh_strip index b150192..7c851e2 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) { diff --git a/dh_suidregister b/dh_suidregister index bbadddf..8ab14cc 100755 --- a/dh_suidregister +++ b/dh_suidregister @@ -31,7 +31,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { if (@files) { # So we would have registered some files before. - error("This program should no longer be used. Please read the dh_suidregister(1) man page."); + error("This program should no longer be used, but you need to add a conflicts with "suidmanager (<< 0.50)". Please read the dh_suidregister(1) man page."); } }