From: joey Date: Fri, 21 Jun 2002 01:04:14 +0000 (+0000) Subject: r534: * Stupid, evil typo. X-Git-Tag: version_2.0.101~65 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9d10bc252fde1f9e093d859ece3025c1267ae59f;p=debhelper.git r534: * Stupid, evil typo. * Fixed the tests clint didn't show me. --- diff --git a/autoscripts/postinst-init-norestart b/autoscripts/postinst-init-norestart index 4f1c63f..a574165 100644 --- a/autoscripts/postinst-init-norestart +++ b/autoscripts/postinst-init-norestart @@ -1,7 +1,7 @@ if [ -x "/etc/init.d/#SCRIPT#" ]; then update-rc.d #SCRIPT# #INITPARMS# >/dev/null if [ "$1" = "configure" ]; then - if [ -z "$2" -o "$2" = "" ]; then + if [ -z "$2" ] || [ "$2" = "" ]; then /etc/init.d/#SCRIPT# start fi fi diff --git a/autoscripts/postinst-init-norestart-invoke b/autoscripts/postinst-init-norestart-invoke index 440e8c7..be1751c 100644 --- a/autoscripts/postinst-init-norestart-invoke +++ b/autoscripts/postinst-init-norestart-invoke @@ -1,7 +1,7 @@ if [ -x "/etc/init.d/#SCRIPT#" ]; then update-rc.d #SCRIPT# #INITPARMS# >/dev/null if [ "$1" = "configure" ]; then - if [ -z "$2" -o "$2" = "" ]; then + if [ -z "$2" ] || [ "$2" = "" ]; then invoke-rc.d #SCRIPT# start fi fi diff --git a/autoscripts/prerm-doc b/autoscripts/prerm-doc index 05abb49..bd77868 100644 --- a/autoscripts/prerm-doc +++ b/autoscripts/prerm-doc @@ -1,4 +1,4 @@ -if [ "$1" = "upgrade" ] || [ "$1" = "remove" ] && [ -L /usr/doc/#PACKAGE# +if [ "$1" = "upgrade" ] || [ "$1" = "remove" ] && [ -L /usr/doc/#PACKAGE# ] then rm -f /usr/doc/#PACKAGE# fi diff --git a/autoscripts/prerm-doc-base b/autoscripts/prerm-doc-base index 7ec95b7..c57d999 100644 --- a/autoscripts/prerm-doc-base +++ b/autoscripts/prerm-doc-base @@ -1,4 +1,4 @@ -if [ "$1" = remove -o "$1" = upgrade ] && \ +if [ "$1" = remove ] || [ "$1" = upgrade ] && \ which install-docs >/dev/null 2>&1; then install-docs -r #DOC-ID# fi diff --git a/debian/changelog b/debian/changelog index 221eb8c..b7d8636 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (4.0.15) unstable; urgency=low + + * Stupid, evil typo. + * Fixed the tests clint didn't show me. + + -- Joey Hess Thu, 20 Jun 2002 20:57:06 -0400 + debhelper (4.0.14) unstable; urgency=low * In script fragments, use more posix tests, no -a or -o, no parens. diff --git a/dh_suidregister b/dh_suidregister index 05db06e..263e727 100755 --- a/dh_suidregister +++ b/dh_suidregister @@ -104,7 +104,6 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } if (@files) { - # So we would have registered some files before. warning("This program should no longer be used. Please read the dh_suidregister(1) man page."); $notused=0; }