diff options
Diffstat (limited to 'vms/mms2make.pl')
-rw-r--r-- | vms/mms2make.pl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vms/mms2make.pl b/vms/mms2make.pl index 6fdc924081..6b35e75ffb 100644 --- a/vms/mms2make.pl +++ b/vms/mms2make.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl # # mms2make.pl - convert Descrip.MMS file to Makefile -# Version 2.0 29-Sep-1994 +# Version 2.2 29-Jan-1996 # David Denholm <denholm@conmat.phys.soton.ac.uk> # # 1.0 06-Aug-1994 Charles Bailey bailey@genetics.upenn.edu @@ -18,13 +18,15 @@ # an empty @conditions [assume nesting in descrip.mms is correct] # 2.1 26-Feb-1995 Charles Bailey bailey@genetics.upenn.edu # - handle MMS macros generated by MakeMaker +# 2.2 29-Jan-1996 Charles Bailey bailey@genetics.upenn.edu +# - Fix output file name to work under Unix if ($#ARGV > -1 && $ARGV[0] =~ /^[\-\/]trim/i) { $do_trim = 1; shift @ARGV; } $infile = $#ARGV > -1 ? shift(@ARGV) : "Descrip.MMS"; -$outfile = $#ARGV > -1 ? shift(@ARGV) : "Makefile."; +$outfile = $#ARGV > -1 ? shift(@ARGV) : "Makefile"; # set any other args in %macros - set VAXC by default foreach (@ARGV) { $macros{"\U$_"}=1 } |