From: Perl 5 Porters Date: Tue, 9 Jul 1996 22:46:40 +0000 (+0000) Subject: Recognize recent versions > 10.2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9aff00ad656192f58f8211866be7b0ca98f69029;p=p5sagit%2Fp5-mst-13.2.git Recognize recent versions > 10.2 --- diff --git a/hints/convexos.sh b/hints/convexos.sh index f0ce409..5d6eafb 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