diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-07-09 22:46:40 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-07-09 22:46:40 +0000 |
commit | 9aff00ad656192f58f8211866be7b0ca98f69029 (patch) | |
tree | 726f61a28308a7db35f1a0bc0da105115a9b41f5 /hints/convexos.sh | |
parent | 180c3c44e996a924c6aa4a9ec05e607cad2c29ff (diff) | |
download | perl-9aff00ad656192f58f8211866be7b0ca98f69029.tar.gz |
Recognize recent versions > 10.2
Diffstat (limited to 'hints/convexos.sh')
-rw-r--r-- | hints/convexos.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/hints/convexos.sh b/hints/convexos.sh index f0ce409756..5d6eafbf0b 100644 --- a/hints/convexos.sh +++ b/hints/convexos.sh @@ -15,6 +15,7 @@ osvers=$4 # a mixed system, so we undef d_getpgrp. # Andy Dougherty doughera@lafcol.lafayette.edu # -case "$osvers" in -10.2) d_getpgrp='undef' ;; -esac +if [ "$osvers" -ge 10.2 ] +then + d_getpgrp='undef' ;; +fi |