From: Gisle Aas Date: Sun, 18 Apr 2010 20:36:46 +0000 (+0200) Subject: Let the cmdVERSION usage message expand $0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dc47dc11fc409a5105cbcafee6e5587b7e8633ed;p=p5sagit%2Fp5-mst-13.2.git Let the cmdVERSION usage message expand $0 It makes more sense than literally printing "usage: $0 ..." --- diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl index f118974..73a1357 100644 --- a/Porting/cmpVERSION.pl +++ b/Porting/cmpVERSION.pl @@ -24,7 +24,7 @@ use lib 'Porting'; use Maintainers; sub usage { -die <<'EOF'; +die <<"EOF"; usage: $0 [ -d -x ] source_dir1 source_dir2 EOF }