perl version oddity
[exim.git] / src / src / exim_checkaccess.src
index 360f307ba5e6806cfbda613eece0b18fc56cdfd7..9615443db65274c12082b5ecb9754f40593eaffd 100755 (executable)
@@ -1,7 +1,9 @@
 #! /bin/sh
 
+# Copyright (c) The Exim Maintainers 2023
 # Copyright (c) University of Cambridge, 1995 - 2007
 # See the file NOTICE for conditions of use and distribution.
+# SPDX-License-Identifier: GPL-2.0-or-later
 
 # Except when they appear in comments, the following placeholders in this
 # source are replaced when it is turned into a runnable script:
@@ -68,11 +70,11 @@ use FileHandle;
 use File::Basename;
 use IPC::Open2;
 
-if ($ARGV[0] eq '--version') {
+if ($ARGV[0] eq '--version' || $ARGV[0] eq '-v') {
     print basename($0) . ": $0\n",
           "build: EXIM_RELEASE_VERSIONEXIM_VARIANT_VERSION\n",
           "perl(runtime): $]\n";
-          exit 0;
+    exit 0;
 }
 
 if (scalar(@ARGV) < 3)