summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGisle Aas <gisle@aas.no>2010-04-18 22:36:46 +0200
committerGisle Aas <gisle@aas.no>2010-04-18 23:00:29 +0200
commitdc47dc11fc409a5105cbcafee6e5587b7e8633ed (patch)
tree15f8be3705da2faeb4dd1e315d67984cb0f80e93
parentf6e2320c520b8d610a864cd42aece1f0df2db895 (diff)
downloadperl-dc47dc11fc409a5105cbcafee6e5587b7e8633ed.tar.gz
Let the cmdVERSION usage message expand $0
It makes more sense than literally printing "usage: $0 ..."
-rw-r--r--Porting/cmpVERSION.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl
index f1189744c8..73a13572f0 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
}