diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-09-24 20:19:22 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-09-24 20:19:22 +0000 |
commit | abeab9d3f076e8a1b217f5132e9d6271075a909a (patch) | |
tree | 4c3bb5b6b97f4416c706af18180ced92129487e4 /hints | |
parent | d041ed074ea76d111d3116540927bbe2727c442a (diff) | |
download | perl-abeab9d3f076e8a1b217f5132e9d6271075a909a.tar.gz |
Patch #17914 was empty ; this should have been applied instead.
p4raw-id: //depot/perl@17915
Diffstat (limited to 'hints')
-rw-r--r-- | hints/aix.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index 427412eb90..cfaf8f48c5 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -560,6 +560,15 @@ EOF shift libswanted="$*" installusrbinperl="$undef" + + # V5R1 doesn't have this (V5R2 does), without knowing + # which one we have it's safer to be pessimistic. + # Cwd will work fine even without fchdir(), but if + # V5R1 tries to use code compiled assuming fchdir(), + # lots of grief will issue forth from Cwd. + case "$d_fchdir" in + '') d_fchdir="$undef" ;; + esac ;; esac |