From a241ec8aa546ccbb97f171eefa784d9388272086 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 8 Jul 2012 16:06:54 +0000 Subject: [PATCH] fix file encoding --- tools/sort_deps | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/sort_deps b/tools/sort_deps index b94aae5b..68ee02aa 100755 --- a/tools/sort_deps +++ b/tools/sort_deps @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# Copyright 1999 Raphaėl Hertzog +# Copyright 1999 RaphaĆ«l Hertzog # See the README file for the license # # This script takes 1 argument on input : @@ -157,7 +157,7 @@ while (@list) { $ENV{'LC_ALL'} = 'C'; # Required since apt is now translated open (APT, "$apt cache depends @pkg |") || die "Can't fork : $!\n"; my (@res) = (); - close APT or die "« apt-cache depends » failed ... \n" . + close APT or die "'apt-cache depends failed ... \n" . "you must have apt >= 0.3.11.1 !\n"; # Getting rid of conflicts/replaces/provides my $i = 0;