X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/505162ede95fd7fcf4ce62692dee816ad8f8c84f..37b849dca4dfd855212a763662825e967a4d77b1:/test/patchexim diff --git a/test/patchexim b/test/patchexim index cb9f98825..a006022e0 100755 --- a/test/patchexim +++ b/test/patchexim @@ -2,6 +2,7 @@ use strict; use warnings; +use Getopt::Std; ############################################################################### # This is an auxiliary script that is part of the Exim test suite. It must be # @@ -11,16 +12,24 @@ use warnings; # # # The only argument to this script is the name of the Exim binary that is to # # be copied. The script must be run in the correct current directory. # +# # +# One option, -o can be given. Default is "eximdir/exim" # ############################################################################### +our ($opt_o); +getopts('o:'); + +my $outfile = defined($opt_o) ? $opt_o : 'eximdir/exim'; + open(IN, $ARGV[0]) || die "** Failed to open $ARGV[0]: $!\n"; -open(OUT, '>eximdir/exim') || die "** Failed to open eximdir/exim: $!\n"; +open(OUT, ">$outfile") || die "** Failed to open $outfile: $!\n"; while() { s/>>>running<<>>/; s{ - (\d+\.\d+ # major.minor + (\d+[_.]\d+ # major.minor + (?:[_.]\d+)? # optional security-patchlevel (?:[_.]\d+)? # optional patchlevel (?:[_-]RC\d+|[_-]?dev(?:start)?)? # optional RC or dev(start) (?:(?:[_-]\d+)? # git tag distance @@ -36,6 +45,6 @@ while() close(IN); close(OUT); -chmod 04755, 'eximdir/exim'; +chmod 04755, $outfile; # End of patchexim script