]> git.donarmstrong.com Git - debhelper.git/commitdiff
r416: better message
authorjoey <joey>
Sat, 3 Feb 2001 00:38:19 +0000 (00:38 +0000)
committerjoey <joey>
Sat, 3 Feb 2001 00:38:19 +0000 (00:38 +0000)
wrapping

dh_strip
dh_suidregister

index b150192035c93dcf84061bcdb881a7c3ec80627b..7c851e299d26b46425ecab6f9afc26e0ed39d795 100755 (executable)
--- 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) {
index bbadddf87991e4074dd547807fa42109e0026924..8ab14ccc892be1de241cde156d4af9db2f3f66df 100755 (executable)
@@ -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.");
        }
 }