This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8043fda
)
oslevel can fail on AIX, but the output generated would confuse
author
Nicholas Clark
<nick@ccl4.org>
Fri, 16 Jul 2004 10:14:24 +0000
(10:14 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Fri, 16 Jul 2004 10:14:24 +0000
(10:14 +0000)
Configure
p4raw-id: //depot/perl@23122
Configure
patch
|
blob
|
blame
|
history
diff --git
a/Configure
b/Configure
index
5087714
..
cef7bfe
100755
(executable)
--- a/
Configure
+++ b/
Configure
@@
-3080,7
+3080,9
@@
EOM
aix) osname=aix
tmp=`( (oslevel) 2>/dev/null || echo "not found") 2>&1`
case "$tmp" in
- 'not found') osvers="$4"."$3" ;;
+ # oslevel can fail with:
+ # oslevel: Unable to acquire lock.
+ *not\ found) osvers="$4"."$3" ;;
'<3240'|'<>3240') osvers=3.2.0 ;;
'=3240'|'>3240'|'<3250'|'<>3250') osvers=3.2.4 ;;
'=3250'|'>3250') osvers=3.2.5 ;;