From: Wichert Akkerman Date: Fri, 15 Sep 2000 22:54:42 +0000 (+0000) Subject: fixup html-escaped left from a patch X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4c28e916f41ca4fe0aa9a44c4a2e88c082ac02d;p=dpkg fixup html-escaped left from a patch --- diff --git a/scripts/update-alternatives.pl b/scripts/update-alternatives.pl index c09d6d8a..a43ef0c7 100755 --- a/scripts/update-alternatives.pl +++ b/scripts/update-alternatives.pl @@ -518,10 +518,10 @@ sub config_alternatives { "$altdir/$slave.dpkg-tmp"); checked_mv("$altdir/$slave.dpkg-tmp", "$altdir/$slave"); } else { - &pr("Removing $slave ($slavelinks[$slnum]), not appropriate with $versions[$preferred].") + &&pr("Removing $slave ($slavelinks[$slnum]), not appropriate with $versions[$preferred].") if $verbosemode > 0; - unlink("$altdir/$slave") || $! == &ENOENT || - &quit("unable to remove $altdir/$slave: $!"); + unlink("$altdir/$slave") || $! == &ENOENT || + &quit("unable to remove $altdir/$slave: $!"); } } @@ -548,12 +548,12 @@ sub rename_mv { sub checked_symlink { my ($filename, $linkname) = @_; symlink($filename, $linkname) || - &quit("unable to make $linkname a symlink to $filename: $!"); + &quit("unable to make $linkname a symlink to $filename: $!"); } sub checked_mv { my ($source, $dest) = @_; rename_mv($source, $dest) || - &quit("unable to install $source as $dest: $!"); + &quit("unable to install $source as $dest: $!"); } exit(0);