projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
180c3c4
)
Recognize recent versions > 10.2
Perl 5 Porters [Tue, 9 Jul 1996 22:46:40 +0000 (22:46 +0000)]
hints/convexos.sh
patch
|
blob
|
blame
|
history
diff --git
a/hints/convexos.sh
b/hints/convexos.sh
index
f0ce409
..
5d6eafb
100644
(file)
--- 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